vagrant-config_builder 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ba22ffbeb05327a4a662574c9076312b751e753e
4
- data.tar.gz: ae2d2abbcda483c9cb876c96d1888afd09da2d13
3
+ metadata.gz: 3b8f804b5113a9fae5ab9161daff63c371decd57
4
+ data.tar.gz: 7cc438b36c2c5ad9255a3bef2aa81c339cc68cf6
5
5
  SHA512:
6
- metadata.gz: f0e8133910d615f5ea7d134f5f159bda39dd76cf7c60a9fb99eee127122af570bc82a0a451ec8a4f3b97e7ab56e65d509b128fc9abf28e91167b3a5666a37c7b
7
- data.tar.gz: c9381aa168675ae725662005a194666400163c8a8092aeb7697c00b88210932594576430d6e7e2e89515127cd89e7fb466b94bfd878989445f1de2f1bc718b9f
6
+ metadata.gz: ef8a0b918542ed737a1544df01df943c9b5ef1a4d594500ba67baf282a2587bf44f2130ea51ae5b48762683902f7e88cc62667291bd5161e94b54f6021a0d351
7
+ data.tar.gz: fe7f55d729affe65bef07875cadb86c7573a9cf0485fa4b6920fe36fe511e297e82118f44330f4c2d220024ab0a883d8f0b1eccdd7a50c9cf60c04eeec7c752a
data/CHANGELOG CHANGED
@@ -1,6 +1,16 @@
1
1
  CHANGELOG
2
2
  =========
3
3
 
4
+ 0.10.0
5
+ ------
6
+
7
+ 2014-05-22
8
+
9
+ This is a backwards compatible feature release.
10
+
11
+ * (GH-20) Add `communicator` to the VM model. This supports Windows machines
12
+ running under Vagrant 1.6.
13
+
4
14
  0.9.0
5
15
  -----
6
16
 
@@ -138,7 +138,7 @@ class ConfigBuilder::Filter::Roles
138
138
  end
139
139
  end
140
140
 
141
- single_keys = %w[provider box name]
141
+ single_keys = %w[provider box name communicator]
142
142
 
143
143
  single_keys.each do |key|
144
144
  retval[key] = left[key] if left[key]
@@ -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
@@ -1,3 +1,3 @@
1
1
  module ConfigBuilder
2
- VERSION = '0.9.0'
2
+ VERSION = '0.10.0'
3
3
  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.9.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-21 00:00:00.000000000 Z
11
+ date: 2014-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: deep_merge