Class: VagrantPlugins::Vagga::Config
- Inherits:
-
Object
- Object
- VagrantPlugins::Vagga::Config
- Defined in:
- lib/vagrant-vagga/config.rb
Instance Attribute Summary collapse
-
#install ⇒ Object
Returns the value of attribute install.
-
#testing ⇒ Object
Returns the value of attribute testing.
Instance Method Summary collapse
- #finalize! ⇒ Object
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
10 11 12 13 |
# File 'lib/vagrant-vagga/config.rb', line 10 def initialize @install = UNSET_VALUE @testing = UNSET_VALUE end |
Instance Attribute Details
#install ⇒ Object
Returns the value of attribute install.
7 8 9 |
# File 'lib/vagrant-vagga/config.rb', line 7 def install @install end |
#testing ⇒ Object
Returns the value of attribute testing.
8 9 10 |
# File 'lib/vagrant-vagga/config.rb', line 8 def testing @testing end |
Instance Method Details
#finalize! ⇒ Object
15 16 17 18 |
# File 'lib/vagrant-vagga/config.rb', line 15 def finalize! @install = false if @install == UNSET_VALUE @testing = false if @testing == UNSET_VALUE end |