module FavroApi

Constants

VERSION

Attributes

auth[RW]
organization_id[RW]

Public Class Methods

auth=(params = {}) click to toggle source
# File lib/favro_api.rb, line 14
def auth=(params = {})
  @auth = Auth.new(params[:email], params[:token])
end
driver() click to toggle source
# File lib/favro_api.rb, line 18
def driver
  Driver.new
end
method_missing(meth, *args) click to toggle source
Calls superclass method
# File lib/favro_api.rb, line 22
def method_missing(meth, *args)
  if driver.respond_to? meth
    return driver.public_send meth, *args
  end
  super
end