Class: Safecrow::Configuration
- Inherits:
-
Object
- Object
- Safecrow::Configuration
- Defined in:
- lib/safecrow/configuration.rb
Instance Attribute Summary collapse
-
#apikey ⇒ Object
Returns the value of attribute apikey.
-
#apisecret ⇒ Object
Returns the value of attribute apisecret.
-
#prefix ⇒ Object
Returns the value of attribute prefix.
-
#url ⇒ Object
Returns the value of attribute url.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
5 6 7 8 9 10 |
# File 'lib/safecrow/configuration.rb', line 5 def initialize @url = nil @apikey = nil @apisecret = nil @prefix = nil end |
Instance Attribute Details
#apikey ⇒ Object
Returns the value of attribute apikey.
3 4 5 |
# File 'lib/safecrow/configuration.rb', line 3 def apikey @apikey end |
#apisecret ⇒ Object
Returns the value of attribute apisecret.
3 4 5 |
# File 'lib/safecrow/configuration.rb', line 3 def apisecret @apisecret end |
#prefix ⇒ Object
Returns the value of attribute prefix.
3 4 5 |
# File 'lib/safecrow/configuration.rb', line 3 def prefix @prefix end |
#url ⇒ Object
Returns the value of attribute url.
3 4 5 |
# File 'lib/safecrow/configuration.rb', line 3 def url @url end |