module EPayCo

Constants

VERSION

Public Class Methods

client(options={}) click to toggle source

Alias for EPayCo::Client.new

@return [EPayCo::Client]

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

Delegate to EPayCo::Client

Calls superclass method
# File lib/epayco.rb, line 19
def 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 EPayCo::Client

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