module Gamertag

Constants

VERSION

Public Class Methods

method_missing(method, *args, &block) click to toggle source

Delegate calls to Gamertag::Client instance

Calls superclass method
# File lib/gamertag.rb, line 17
def method_missing(method, *args, &block)
  return super unless new.respond_to?(method)
  new.send(method, *args, &block)
end
new(opts={}) click to toggle source

Alias for Gamertag::Client.new

@return [Gamertag::Client]

# File lib/gamertag.rb, line 12
def new(opts={})
  Gamertag::Client.new(opts)
end