vagrant-vsphere 0.13.0 → 0.13.1

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: 7a762207e6d45ec3deb3adb0cffaeb8e175407f5
4
- data.tar.gz: 41d40b6adf3bf79cf26a75f59624c29521f32f7d
3
+ metadata.gz: d4dce496c79c53cffa0fa7364379c8331e4b918f
4
+ data.tar.gz: edc297f71f5fef2c79e03f2c6d5c25c8d4c67c90
5
5
  SHA512:
6
- metadata.gz: 8c235b540287103c00490469fa0dd7e35b04c9c890304f906a803eae7616ac088094ba581eb4bcbf372693401559ff03f08588385222b80add4fe88744044a62
7
- data.tar.gz: 030f39cf19776d1f61cda9c6d0bb5a4a8c10216b81162b56fb80d5a2b3382bcc816063525abecc5866abbd7c899cc2d0d1ea1be9944397a47ae0ca7758ae0728
6
+ metadata.gz: ebf9859f8b9c82f8b0807e549a2d5a267fc8966b5c450837eab8c4cef99e47348e13f7baa22643c6f2ad5eca145c677bf260674ebd72e7143fe69995912dfedf
7
+ data.tar.gz: 5ee5e449d626a37a7075d1581ba13ee12022f6e16f1385ff7bb2ff8a003c0217bada43864ab780ad9bde7f03fa8199b4d50f68251dc1a9381667a821a52bd1f8
data/.bumpversion.cfg ADDED
@@ -0,0 +1,11 @@
1
+ [bumpversion]
2
+ current_version = 0.13.1
3
+ tag = true
4
+ commit = true
5
+
6
+ [bumpversion:file:lib/vSphere/version.rb]
7
+
8
+ [bumpversion:file:README.md]
9
+ parse = version: (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
10
+ serialize = version: {major}.{minor}.{patch}
11
+
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.13.0**
15
+ **version: 0.13.1**
16
16
 
17
- vagrant-vsphere (0.13.0) is available from [RubyGems.org](https://rubygems.org/gems/vagrant-vsphere)
17
+ vagrant-vsphere (**version: 0.13.1**) is available from [RubyGems.org](https://rubygems.org/gems/vagrant-vsphere)
18
18
 
19
19
  ## Installation
20
20
 
@@ -34,7 +34,7 @@ After the gem is built, run the plugin install command from the build directory.
34
34
  The requirements for [Nokogiri](http://nokogiri.org/) must be installed before the plugin can be installed. See Nokogiri's [tutorial](http://nokogiri.org/tutorials/installing_nokogiri.html) for
35
35
  detailed instructions.
36
36
 
37
- The plugin forces use of Nokogiri >= 1.5.10 to prevent conflicts with older versions of system libraries, specifically zlib.
37
+ The plugin forces use of Nokogiri ~> 1.5 to prevent conflicts with older versions of system libraries, specifically zlib.
38
38
 
39
39
  ## Usage
40
40
 
@@ -182,6 +182,8 @@ This is useful if running Vagrant from multiple directories or if multiple machi
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
183
  * 0.13.0
184
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
+ * 0.13.1
186
+ * Change Nokogiri Major Version dependency [#90 highsineburgh:SAITRADLab-master](https://github.com/nsidc/vagrant-vsphere/pull/90)
185
187
 
186
188
 
187
189
 
@@ -1,3 +1,3 @@
1
1
  {
2
- "provider": "vSphere"
2
+ "provider": "vsphere"
3
3
  }
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module VSphere
3
- VERSION = '0.13.0'
3
+ VERSION = '0.13.1'
4
4
  end
5
5
  end
data/vSphere.gemspec CHANGED
@@ -11,8 +11,8 @@ Gem::Specification.new do |s|
11
11
  s.summary = 'VMWare vSphere provider'
12
12
  s.description = 'Enables Vagrant to manage machines with VMWare vSphere.'
13
13
 
14
- # force the use of Nokogiri 1.5.10 to prevent conflicts with older versions of zlib
15
- s.add_dependency 'nokogiri', '~>1.5.10'
14
+ # force the use of Nokogiri 1.5.x to prevent conflicts with older versions of zlib
15
+ s.add_dependency 'nokogiri', '~>1.5'
16
16
  # force the use of rbvmomi 1.6.x to get around this issue: https://github.com/vmware/rbvmomi/pull/32
17
17
  s.add_dependency 'rbvmomi', '~> 1.6.0'
18
18
  s.add_dependency 'i18n', '~> 0.6.4'
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.13.0
4
+ version: 0.13.1
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-09-03 00:00:00.000000000 Z
11
+ date: 2014-09-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ~>
18
18
  - !ruby/object:Gem::Version
19
- version: 1.5.10
19
+ version: '1.5'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ~>
25
25
  - !ruby/object:Gem::Version
26
- version: 1.5.10
26
+ version: '1.5'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rbvmomi
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -115,6 +115,7 @@ executables: []
115
115
  extensions: []
116
116
  extra_rdoc_files: []
117
117
  files:
118
+ - .bumpversion.cfg
118
119
  - .gitignore
119
120
  - Gemfile
120
121
  - LICENSE.txt
@@ -173,7 +174,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
173
174
  version: '0'
174
175
  requirements: []
175
176
  rubyforge_project:
176
- rubygems_version: 2.0.14
177
+ rubygems_version: 2.2.2
177
178
  signing_key:
178
179
  specification_version: 4
179
180
  summary: VMWare vSphere provider