Class: Universign::Configuration
- Inherits:
-
Object
- Object
- Universign::Configuration
- Defined in:
- lib/universign/configuration.rb
Instance Attribute Summary collapse
-
#endpoint ⇒ Object
Returns the value of attribute endpoint.
-
#login ⇒ Object
Returns the value of attribute login.
-
#password ⇒ Object
Returns the value of attribute password.
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/universign/configuration.rb', line 5 def initialize @login = '' @password = '' @endpoint = '' end |
Instance Attribute Details
#endpoint ⇒ Object
Returns the value of attribute endpoint.
3 4 5 |
# File 'lib/universign/configuration.rb', line 3 def endpoint @endpoint end |
#login ⇒ Object
Returns the value of attribute login.
3 4 5 |
# File 'lib/universign/configuration.rb', line 3 def login @login end |
#password ⇒ Object
Returns the value of attribute password.
3 4 5 |
# File 'lib/universign/configuration.rb', line 3 def password @password end |