Class: NameDrop::Configuration
- Inherits:
-
Object
- Object
- NameDrop::Configuration
- Defined in:
- lib/name_drop/configuration.rb
Instance Attribute Summary collapse
-
#access_token ⇒ Object
Returns the value of attribute access_token.
-
#account_id ⇒ Object
Returns the value of attribute account_id.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
5 6 7 8 |
# File 'lib/name_drop/configuration.rb', line 5 def initialize @account_id = 'NotARealAccountID' @access_token = 'NotARealAccessToken' end |
Instance Attribute Details
#access_token ⇒ Object
Returns the value of attribute access_token.
3 4 5 |
# File 'lib/name_drop/configuration.rb', line 3 def access_token @access_token end |
#account_id ⇒ Object
Returns the value of attribute account_id.
3 4 5 |
# File 'lib/name_drop/configuration.rb', line 3 def account_id @account_id end |