Class: TinyerpRuby::Connection

Inherits:
Object
  • Object
show all
Defined in:
lib/tinyerp_ruby/connection.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_key, environment = :production) ⇒ Connection

Returns a new instance of Connection.



5
6
7
8
9
# File 'lib/tinyerp_ruby/connection.rb', line 5

def initialize(api_key, environment = :production)
  @environment = eval(environment.to_s.capitalize)
  @base_url = @environment::BASE_URL
  @api_key = api_key
end

Instance Attribute Details

#api_keyObject (readonly)

Returns the value of attribute api_key.



3
4
5
# File 'lib/tinyerp_ruby/connection.rb', line 3

def api_key
  @api_key
end

#base_urlObject (readonly)

Returns the value of attribute base_url.



3
4
5
# File 'lib/tinyerp_ruby/connection.rb', line 3

def base_url
  @base_url
end

#environmentObject (readonly)

Returns the value of attribute environment.



3
4
5
# File 'lib/tinyerp_ruby/connection.rb', line 3

def environment
  @environment
end