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.
-
#proxy ⇒ Object
Returns the value of attribute proxy.
-
#timeout ⇒ Object
Returns the value of attribute timeout.
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 10 11 |
# File 'lib/universign/configuration.rb', line 5 def initialize @login = nil @password = nil @endpoint = nil @proxy = nil @timeout = nil 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 |
#proxy ⇒ Object
Returns the value of attribute proxy.
3 4 5 |
# File 'lib/universign/configuration.rb', line 3 def proxy @proxy end |
#timeout ⇒ Object
Returns the value of attribute timeout.
3 4 5 |
# File 'lib/universign/configuration.rb', line 3 def timeout @timeout end |