Class: Vagrant::Chefdev::Config
- Inherits:
-
Object
- Object
- Vagrant::Chefdev::Config
- Defined in:
- lib/vagrant-chefdev/config.rb
Instance Attribute Summary collapse
-
#nuke_chef_node ⇒ Object
Returns the value of attribute nuke_chef_node.
Instance Method Summary collapse
- #finalize! ⇒ Object
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
8 9 10 |
# File 'lib/vagrant-chefdev/config.rb', line 8 def initialize @nuke_chef_node = UNSET_VALUE end |
Instance Attribute Details
#nuke_chef_node ⇒ Object
Returns the value of attribute nuke_chef_node.
5 6 7 |
# File 'lib/vagrant-chefdev/config.rb', line 5 def nuke_chef_node @nuke_chef_node end |
Instance Method Details
#finalize! ⇒ Object
12 13 14 |
# File 'lib/vagrant-chefdev/config.rb', line 12 def finalize! @nuke_chef_node = true if @nuke_chef_node == UNSET_VALUE end |