kitchen-vagrant 0.8.0 → 0.9.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.md +9 -0
- data/README.md +8 -4
- data/lib/kitchen/driver/vagrant.rb +3 -3
- data/lib/kitchen/driver/vagrant_version.rb +1 -1
- metadata +4 -4
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## 0.9.0 / 2013-04-19
|
|
2
|
+
|
|
3
|
+
### Upstream changes
|
|
4
|
+
|
|
5
|
+
* Pull request [#16][]: Update Vagrant Berkshelf plugin detection for the vagrant-berkshelf and drop detection for berkshelf-vagrant. ([@martinisoft][])
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
## 0.8.0 / 2013-04-16
|
|
2
9
|
|
|
3
10
|
### Improvements
|
|
@@ -50,6 +57,8 @@ The initial release.
|
|
|
50
57
|
[#7]: https://github.com/opscode/kitchen/issues/7
|
|
51
58
|
[#8]: https://github.com/opscode/kitchen/issues/8
|
|
52
59
|
[#15]: https://github.com/opscode/kitchen/issues/15
|
|
60
|
+
[#16]: https://github.com/opscode/kitchen/issues/16
|
|
53
61
|
[@fnichol]: https://github.com/fnichol
|
|
62
|
+
[@martinisoft]: https://github.com/martinisoft
|
|
54
63
|
[@petejkim]: https://github.com/petejkim
|
|
55
64
|
[@sandfish8]: https://github.com/sandfish8
|
data/README.md
CHANGED
|
@@ -29,14 +29,18 @@ environment.
|
|
|
29
29
|
Currently this driver only supports the VirtualBox provisioner which requires
|
|
30
30
|
the [VirtualBox package][virtualbox_dl] to be installed.
|
|
31
31
|
|
|
32
|
-
### <a name="dependencies-berkshelf"></a> Berkshelf
|
|
32
|
+
### <a name="dependencies-berkshelf"></a> Vagrant Berkshelf Plugin
|
|
33
33
|
|
|
34
34
|
If a Berksfile is present in your project's root directory, then this driver
|
|
35
|
-
will check to ensure that the [berkshelf
|
|
36
|
-
|
|
35
|
+
will check to ensure that the [vagrant-berkshelf][vagrant_berkshelf] plugin is
|
|
36
|
+
installed.
|
|
37
37
|
|
|
38
38
|
If your project doesn't use Berkshelf then this check will be skipped.
|
|
39
39
|
|
|
40
|
+
**Note:** Prior to release 1.2.0, then name of the vagrant-berkshelf gem was
|
|
41
|
+
berkshelf-vagrant. This driver no longer checks for the existance of
|
|
42
|
+
berkshelf-vagrant, so upgrading this Vagrant plugin is recommended.
|
|
43
|
+
|
|
40
44
|
## <a name="installation"></a> Installation and Setup
|
|
41
45
|
|
|
42
46
|
Please read the [Driver usage][driver_usage] page for more details.
|
|
@@ -174,7 +178,7 @@ Apache 2.0 (see [LICENSE][license])
|
|
|
174
178
|
[driver_usage]: http://docs.kitchen-ci.org/drivers/usage
|
|
175
179
|
[chef_omnibus_dl]: http://www.opscode.com/chef/install/
|
|
176
180
|
|
|
177
|
-
[
|
|
181
|
+
[vagrant_berkshelf]: http://rubygems.org/gems/vagrant-berkshelf
|
|
178
182
|
[vagrant_dl]: http://downloads.vagrantup.com/
|
|
179
183
|
[vagrant_machine_settings]: http://docs.vagrantup.com/v2/vagrantfile/machine_settings.html
|
|
180
184
|
[vagrant_networking]: http://docs.vagrantup.com/v2/networking/basic_usage.html
|
|
@@ -152,10 +152,10 @@ module Kitchen
|
|
|
152
152
|
def check_berkshelf_plugin
|
|
153
153
|
if File.exists?(File.join(config[:kitchen_root], "Berksfile"))
|
|
154
154
|
plugins = silently_run("vagrant plugin list").split("\n")
|
|
155
|
-
if ! plugins.find { |p| p =~ /^berkshelf
|
|
156
|
-
raise UserError, "Detected a Berksfile but the
|
|
155
|
+
if ! plugins.find { |p| p =~ /^vagrant-berkshelf\b/ }
|
|
156
|
+
raise UserError, "Detected a Berksfile but the vagrant-berkshelf" +
|
|
157
157
|
" plugin was not found in Vagrant. Please run:" +
|
|
158
|
-
" `vagrant plugin install berkshelf
|
|
158
|
+
" `vagrant plugin install vagrant-berkshelf' and retry."
|
|
159
159
|
end
|
|
160
160
|
end
|
|
161
161
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-vagrant
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.9.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-04-
|
|
12
|
+
date: 2013-04-19 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: test-kitchen
|
|
@@ -107,7 +107,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
107
107
|
version: '0'
|
|
108
108
|
segments:
|
|
109
109
|
- 0
|
|
110
|
-
hash:
|
|
110
|
+
hash: 777835139873983513
|
|
111
111
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
112
112
|
none: false
|
|
113
113
|
requirements:
|
|
@@ -116,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
116
116
|
version: '0'
|
|
117
117
|
segments:
|
|
118
118
|
- 0
|
|
119
|
-
hash:
|
|
119
|
+
hash: 777835139873983513
|
|
120
120
|
requirements: []
|
|
121
121
|
rubyforge_project:
|
|
122
122
|
rubygems_version: 1.8.24
|