module Selligent

Selligent API client

Constants

VERSION

Public Class Methods

client() click to toggle source
# File lib/selligent.rb, line 8
def client
  @client ||= Selligent::Client.new
end

Private Class Methods

method_missing(method_name, *args, &block) click to toggle source
Calls superclass method
# File lib/selligent.rb, line 18
def method_missing(method_name, *args, &block)
  return client.send(method_name, *args, &block) if client.respond_to?(method_name)

  super
end
respond_to_missing?(method_name, include_private = false) click to toggle source
# File lib/selligent.rb, line 14
def respond_to_missing?(method_name, include_private = false)
  client.respond_to?(method_name, include_private)
end