mhuggins/lol_client

View on GitHub
lib/lol_client/representers/static/gold_representer.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'representable/json'

class LolClient
  module Static
    class GoldRepresenter < Representable::Decorator
      include Representable::JSON

      property :base
      property :purchasable
      property :sell
      property :total
    end
  end
end