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