Class: Ehsso::Configuration
- Inherits:
-
Object
- Object
- Ehsso::Configuration
- Defined in:
- lib/ehsso/configuration.rb
Instance Attribute Summary collapse
-
#base_url ⇒ Object
Returns the value of attribute base_url.
-
#module_key ⇒ Object
Returns the value of attribute module_key.
-
#username_and_password ⇒ Object
Returns the value of attribute username_and_password.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
8 9 10 11 12 |
# File 'lib/ehsso/configuration.rb', line 8 def initialize @module_key = '' @base_url = '' @username_and_password = nil end |
Instance Attribute Details
#base_url ⇒ Object
Returns the value of attribute base_url.
5 6 7 |
# File 'lib/ehsso/configuration.rb', line 5 def base_url @base_url end |
#module_key ⇒ Object
Returns the value of attribute module_key.
4 5 6 |
# File 'lib/ehsso/configuration.rb', line 4 def module_key @module_key end |
#username_and_password ⇒ Object
Returns the value of attribute username_and_password.
6 7 8 |
# File 'lib/ehsso/configuration.rb', line 6 def username_and_password @username_and_password end |