class Zoho::Configuration

Constants

TOKEN_PREFIX

Attributes

auth_token[RW]
organization_id[RW]

Public Class Methods

new(options={}) click to toggle source
# File lib/zoho.rb, line 16
def initialize(options={})
  options.each do |key, value|
    if key.to_s == "auth_token"
      self[key] = "#{TOKEN_PREFIX} #{value}"
    else
      self[key] = value
    end
  end
end