Class: VagrantPlugins::Vagga::Config

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

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

#installObject

Returns the value of attribute install.



7
8
9
# File 'lib/vagrant-vagga/config.rb', line 7

def install
  @install
end

#testingObject

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