vagrant-vsphere 0.12.0 → 0.13.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: ad726e37d7aedf30c5556291ef19a0076842c5ba
4
- data.tar.gz: cb50d238059d1b8ed771b6b88648beb7a9f1f62a
3
+ metadata.gz: 7a762207e6d45ec3deb3adb0cffaeb8e175407f5
4
+ data.tar.gz: 41d40b6adf3bf79cf26a75f59624c29521f32f7d
5
5
  SHA512:
6
- metadata.gz: fe948fcf2c8101cd892a69b27cc62d5d746f5f58a7c22ced118397eb5802d282d1e2d7a62d55a4c83e9d48b733198d8f2003e45b5b9806613bedd6dbade6d9ba
7
- data.tar.gz: d9cfa4de2c0d21a8e5ffc24cad61d5e791c811ea863a6797a4d6ee190f0ce923311099526822d012912aa4df196644d4ea28e8e0e219bb90568821d6b674ad8d
6
+ metadata.gz: 8c235b540287103c00490469fa0dd7e35b04c9c890304f906a803eae7616ac088094ba581eb4bcbf372693401559ff03f08588385222b80add4fe88744044a62
7
+ data.tar.gz: 030f39cf19776d1f61cda9c6d0bb5a4a8c10216b81162b56fb80d5a2b3382bcc816063525abecc5866abbd7c899cc2d0d1ea1be9944397a47ae0ca7758ae0728
data/README.md CHANGED
@@ -12,9 +12,9 @@ This provider is built on top of the [RbVmomi](https://github.com/vmware/rbvmomi
12
12
  * libxml2, libxml2-dev, libxslt, libxslt-dev
13
13
 
14
14
  ## Current Version
15
- **0.12.0**
15
+ **0.13.0**
16
16
 
17
- vagrant-vsphere (0.12.0) is available from [RubyGems.org](https://rubygems.org/gems/vagrant-vsphere)
17
+ vagrant-vsphere (0.13.0) is available from [RubyGems.org](https://rubygems.org/gems/vagrant-vsphere)
18
18
 
19
19
  ## Installation
20
20
 
@@ -180,6 +180,10 @@ This is useful if running Vagrant from multiple directories or if multiple machi
180
180
  * Create the VM target folder if it doesn't exist #76 marnovdm:feature/create_vm_folder.
181
181
  * 0.12.0
182
182
  * Use a directory name where Vagrantfile is stored as a prefix for VM name [#82 mkuzmin:name-prefix](https://github.com/nsidc/vagrant-vsphere/pull/82).
183
+ * 0.13.0
184
+ * Find and install box file for multi-provider boxes automatically [#86 mkuzmin:install-box](https://github.com/nsidc/vagrant-vsphere/pull/86) & [#87 mkuzmin/provider-name](https://github.com/nsidc/vagrant-vsphere/pull/87).
185
+
186
+
183
187
 
184
188
  ## Versioning
185
189
 
@@ -87,6 +87,7 @@ module VagrantPlugins
87
87
 
88
88
  def self.action_up
89
89
  Vagrant::Action::Builder.new.tap do |b|
90
+ b.use HandleBox
90
91
  b.use ConfigValidate
91
92
  b.use ConnectVSphere
92
93
  b.use Call, IsCreated do |env, b2|
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module VSphere
3
- VERSION = '0.12.0'
3
+ VERSION = '0.13.0'
4
4
  end
5
5
  end
data/spec/spec_helper.rb CHANGED
@@ -55,6 +55,7 @@ RSpec.configure do |config|
55
55
  :proxy_port => nil)
56
56
  vm_config = double(
57
57
  :vm => double('config_vm',
58
+ :box => nil,
58
59
  :synced_folders => [],
59
60
  :provisioners => [],
60
61
  :hostname => nil,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-vsphere
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Grauch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-16 00:00:00.000000000 Z
11
+ date: 2014-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri