Class: Lenddo::Configuration
- Inherits:
-
Object
- Object
- Lenddo::Configuration
- Defined in:
- lib/lenddo/configuration.rb
Instance Attribute Summary collapse
-
#access_key ⇒ Object
Returns the value of attribute access_key.
-
#network_service ⇒ Object
Returns the value of attribute network_service.
-
#score_service ⇒ Object
Returns the value of attribute score_service.
-
#secret_key ⇒ Object
Returns the value of attribute secret_key.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
7 8 9 10 11 12 |
# File 'lib/lenddo/configuration.rb', line 7 def initialize @access_key = nil @secret_key = nil @score_service = "https://scoreservice.lenddo.com" @network_service = "https://networkservice.lenddo.com" end |
Instance Attribute Details
#access_key ⇒ Object
Returns the value of attribute access_key.
5 6 7 |
# File 'lib/lenddo/configuration.rb', line 5 def access_key @access_key end |
#network_service ⇒ Object
Returns the value of attribute network_service.
5 6 7 |
# File 'lib/lenddo/configuration.rb', line 5 def network_service @network_service end |
#score_service ⇒ Object
Returns the value of attribute score_service.
5 6 7 |
# File 'lib/lenddo/configuration.rb', line 5 def score_service @score_service end |
#secret_key ⇒ Object
Returns the value of attribute secret_key.
5 6 7 |
# File 'lib/lenddo/configuration.rb', line 5 def secret_key @secret_key end |