Class: Vagrant::Provisioners::YaybuProvisioner::Config

Inherits:
Config::Base
  • Object
show all
Defined in:
lib/vagrant-yaybu/provisioner.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



91
92
93
94
95
96
97
98
99
100
101
# File 'lib/vagrant-yaybu/provisioner.rb', line 91

def initialize
  super

  @yay = ""
  @python = "python"
  @searchpath = []
  @include = []

  @yay_version = nil
  @yaybu_version = nil
end

Instance Attribute Details

#includeObject

Returns the value of attribute include.



87
88
89
# File 'lib/vagrant-yaybu/provisioner.rb', line 87

def include
  @include
end

#pythonObject

Returns the value of attribute python.



85
86
87
# File 'lib/vagrant-yaybu/provisioner.rb', line 85

def python
  @python
end

#searchpathObject

Returns the value of attribute searchpath.



86
87
88
# File 'lib/vagrant-yaybu/provisioner.rb', line 86

def searchpath
  @searchpath
end

#yayObject

Returns the value of attribute yay.



84
85
86
# File 'lib/vagrant-yaybu/provisioner.rb', line 84

def yay
  @yay
end

#yay_versionObject

Returns the value of attribute yay_version.



88
89
90
# File 'lib/vagrant-yaybu/provisioner.rb', line 88

def yay_version
  @yay_version
end

#yaybu_versionObject

Returns the value of attribute yaybu_version.



89
90
91
# File 'lib/vagrant-yaybu/provisioner.rb', line 89

def yaybu_version
  @yaybu_version
end