Class: RelateIq::Configuration
- Inherits:
-
Object
- Object
- RelateIq::Configuration
- Defined in:
- lib/relateiq.rb
Instance Attribute Summary collapse
-
#base_url ⇒ Object
Returns the value of attribute base_url.
-
#logger ⇒ Object
Returns the value of attribute logger.
-
#password ⇒ Object
Returns the value of attribute password.
-
#username ⇒ Object
Returns the value of attribute username.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
25 26 27 28 29 |
# File 'lib/relateiq.rb', line 25 def initialize @base_url = 'https://api.relateiq.com/v2' @username = '' @password = '' end |
Instance Attribute Details
#base_url ⇒ Object
Returns the value of attribute base_url.
23 24 25 |
# File 'lib/relateiq.rb', line 23 def base_url @base_url end |
#logger ⇒ Object
Returns the value of attribute logger.
23 24 25 |
# File 'lib/relateiq.rb', line 23 def logger @logger end |
#password ⇒ Object
Returns the value of attribute password.
23 24 25 |
# File 'lib/relateiq.rb', line 23 def password @password end |
#username ⇒ Object
Returns the value of attribute username.
23 24 25 |
# File 'lib/relateiq.rb', line 23 def username @username end |