Class: Vagrant::Chefdev::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-chefdev/config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

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_nodeObject

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