module WOTC

Constants

VERSION

Public Class Methods

client(options={}) click to toggle source

Alias for WOTC::Client.new

@return [WOTC::Client]

# File lib/wotc.rb, line 11
def self.client(options={})
  ::WOTC::Client.new(options)
end
method_missing(method, *args, &block) click to toggle source

Delegate to WOTC::Client

Calls superclass method
# File lib/wotc.rb, line 16
def self.method_missing(method, *args, &block)
  return super unless client.respond_to?(method)
  client.send(method, *args, &block)
end
respond_to?(method, include_all=false) click to toggle source

Delegate to WOTC::Client

Calls superclass method
# File lib/wotc.rb, line 22
def self.respond_to?(method, include_all=false)
  return client.respond_to?(method, include_all) || super
end