Class: AlfaBank::Configuration
- Inherits:
-
Object
- Object
- AlfaBank::Configuration
- Defined in:
- lib/alfa_bank/configuration.rb
Instance Attribute Summary collapse
-
#base_link ⇒ Object
Returns the value of attribute base_link.
-
#password ⇒ Object
Returns the value of attribute password.
-
#user_name ⇒ Object
Returns the value of attribute user_name.
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 9 |
# File 'lib/alfa_bank/configuration.rb', line 5 def initialize @user_name = "user_name" @password = "password" @base_link = "http://alfa_bank_test_url.ru" end |
Instance Attribute Details
#base_link ⇒ Object
Returns the value of attribute base_link.
3 4 5 |
# File 'lib/alfa_bank/configuration.rb', line 3 def base_link @base_link end |
#password ⇒ Object
Returns the value of attribute password.
3 4 5 |
# File 'lib/alfa_bank/configuration.rb', line 3 def password @password end |
#user_name ⇒ Object
Returns the value of attribute user_name.
3 4 5 |
# File 'lib/alfa_bank/configuration.rb', line 3 def user_name @user_name end |