Class: NanoKVM::Configuration
- Inherits:
-
Object
- Object
- NanoKVM::Configuration
- Defined in:
- lib/nanokvm.rb
Instance Attribute Summary collapse
-
#default_host ⇒ Object
Returns the value of attribute default_host.
-
#default_password ⇒ Object
Returns the value of attribute default_password.
-
#default_secret_key ⇒ Object
Returns the value of attribute default_secret_key.
-
#default_username ⇒ Object
Returns the value of attribute default_username.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
26 27 28 29 30 31 |
# File 'lib/nanokvm.rb', line 26 def initialize @default_host = nil @default_username = DEFAULT_USERNAME @default_password = DEFAULT_PASSWORD @default_secret_key = DEFAULT_SECRET_KEY end |
Instance Attribute Details
#default_host ⇒ Object
Returns the value of attribute default_host.
24 25 26 |
# File 'lib/nanokvm.rb', line 24 def default_host @default_host end |
#default_password ⇒ Object
Returns the value of attribute default_password.
24 25 26 |
# File 'lib/nanokvm.rb', line 24 def default_password @default_password end |
#default_secret_key ⇒ Object
Returns the value of attribute default_secret_key.
24 25 26 |
# File 'lib/nanokvm.rb', line 24 def default_secret_key @default_secret_key end |
#default_username ⇒ Object
Returns the value of attribute default_username.
24 25 26 |
# File 'lib/nanokvm.rb', line 24 def default_username @default_username end |