vagrant-config_builder 0.9.0 → 0.10.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.
- checksums.yaml +4 -4
- data/CHANGELOG +10 -0
- data/lib/config_builder/filter/roles.rb +1 -1
- data/lib/config_builder/model/vm.rb +7 -0
- data/lib/config_builder/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b8f804b5113a9fae5ab9161daff63c371decd57
|
4
|
+
data.tar.gz: 7cc438b36c2c5ad9255a3bef2aa81c339cc68cf6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef8a0b918542ed737a1544df01df943c9b5ef1a4d594500ba67baf282a2587bf44f2130ea51ae5b48762683902f7e88cc62667291bd5161e94b54f6021a0d351
|
7
|
+
data.tar.gz: fe7f55d729affe65bef07875cadb86c7573a9cf0485fa4b6920fe36fe511e297e82118f44330f4c2d220024ab0a883d8f0b1eccdd7a50c9cf60c04eeec7c752a
|
data/CHANGELOG
CHANGED
@@ -93,6 +93,11 @@ class ConfigBuilder::Model::VM < ConfigBuilder::Model::Base
|
|
93
93
|
# @return [String] The hostname the machine should have.
|
94
94
|
def_model_attribute :hostname
|
95
95
|
|
96
|
+
# @!attribute [rw] communicator
|
97
|
+
# @return [String] The name of the communicator to use when sending
|
98
|
+
# commands to this box. Set to 'winrm' for Windows VMs.
|
99
|
+
def_model_attribute :communicator
|
100
|
+
|
96
101
|
def initialize
|
97
102
|
@defaults = {
|
98
103
|
:providers => [],
|
@@ -113,6 +118,8 @@ class ConfigBuilder::Model::VM < ConfigBuilder::Model::Base
|
|
113
118
|
with_attr(:hostname) { |val| vm_config.hostname = attr(:hostname) }
|
114
119
|
with_attr(:guest) { |val| vm_config.guest = attr(:guest) }
|
115
120
|
|
121
|
+
with_attr(:communicator) { |val| vm_config.communicator = attr(:communicator) }
|
122
|
+
|
116
123
|
eval_models(vm_config)
|
117
124
|
end
|
118
125
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adrien Thebo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-05-
|
11
|
+
date: 2014-05-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: deep_merge
|