class Gamertag::Client

Public Class Methods

new(opts={}) click to toggle source
# File lib/gamertag/client.rb, line 12
def initialize(opts={})
  options = Gamertag.options.merge(opts)
  Configuration::OPTION_KEYS.each do |key|
    send("#{key}=", options[key])
  end
end