module FullContact

Constants

VERSION

Public Class Methods

client(options={}) click to toggle source

Alias for FullContact::Client.new

@return [FullContact::Client]

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

Delegate to FullContact::Client

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