vagrant-config_builder 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +9 -0
- data/README.markdown +1 -1
- data/lib/config_builder/filter/roles.rb +1 -0
- data/lib/config_builder/model/vm.rb +5 -0
- data/lib/config_builder/version.rb +1 -1
- metadata +2 -2
data/CHANGELOG
CHANGED
data/README.markdown
CHANGED
@@ -66,6 +66,10 @@ class ConfigBuilder::Model::VM < ConfigBuilder::Model::Base
|
|
66
66
|
# @return [String] The name of the Vagrant box to instantiate for this VM
|
67
67
|
def_model_attribute :box
|
68
68
|
|
69
|
+
# @!attribute [rw] guest
|
70
|
+
# @return [String] The guest type to use for this VM
|
71
|
+
def_model_attribute :guest
|
72
|
+
|
69
73
|
# @!attribute [rw] box_url
|
70
74
|
# @return [String] The source URL for the Vagrant box associated with this VM
|
71
75
|
def_model_attribute :box
|
@@ -95,6 +99,7 @@ class ConfigBuilder::Model::VM < ConfigBuilder::Model::Base
|
|
95
99
|
vm_config.box = attr(:box) if defined? attr(:box)
|
96
100
|
vm_config.box_url = attr(:box_url) if defined? attr(:box_url)
|
97
101
|
vm_config.hostname = attr(:hostname) if defined? attr(:hostname)
|
102
|
+
vm_config.guest = attr(:guest) if defined? attr(:guest)
|
98
103
|
|
99
104
|
eval_models(vm_config)
|
100
105
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-config_builder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-09-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|