module RiotClient

Constants

VERSION

Attributes

configuration[RW]

Public Class Methods

champions(region = 'na', version = '1.1', params = {}) click to toggle source
# File lib/riot_client.rb, line 20
def self.champions(region = 'na', version = '1.1', params = {})
  RiotClient::ChampionService.new(region, version, params).all
end
configure() { |configuration| ... } click to toggle source
# File lib/riot_client.rb, line 15
def self.configure
  self.configuration ||= Configuration.new
  yield(configuration)
end