mhuggins/lol_client

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

Summary

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

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

      property :is_rune, as: :isRune
      property :tier
      property :type
    end
  end
end