Class: Cloud66::Configuration
- Inherits:
-
Object
- Object
- Cloud66::Configuration
- Defined in:
- lib/cloud66/configuration.rb
Instance Attribute Summary collapse
-
#engine_automount ⇒ Object
Determines whether the engine is auto-mounted.
-
#engine_automount_endpoint ⇒ Object
Determines the endpoint to which the engine is auto-mounted to.
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 |
# File 'lib/cloud66/configuration.rb', line 8 def initialize self.engine_automount = true self.engine_automount_endpoint = "/cloud66" end |
Instance Attribute Details
#engine_automount ⇒ Object
Determines whether the engine is auto-mounted.
4 5 6 |
# File 'lib/cloud66/configuration.rb', line 4 def engine_automount @engine_automount end |
#engine_automount_endpoint ⇒ Object
Determines the endpoint to which the engine is auto-mounted to.
6 7 8 |
# File 'lib/cloud66/configuration.rb', line 6 def engine_automount_endpoint @engine_automount_endpoint end |