kitchen-vagrant 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 +4 -4
- data/CHANGELOG.md +16 -5
- data/kitchen-vagrant.gemspec +2 -2
- data/lib/kitchen/driver/vagrant.rb +9 -2
- data/lib/kitchen/driver/vagrant_version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 84fab63daefe505a96094d12b2af549ac3f112ca
|
4
|
+
data.tar.gz: ef0b688fdc859add6afed85e500417d5c1ab566c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28e9e2c5fac11fe3dd57650eed9e84e38f629b0d7353676347a97b6139cc9709a78f340daafc25ef4eabcccbdd272daf1ea860d151891e09a8f74e4a35becb09
|
7
|
+
data.tar.gz: ef708f146919893030a3cd92661b945992ec0b14a98c7a1de1cbdd44501a11d2c01cf5e6aff1b19d87fa264cadeb90385fec20667899167ed596e4e776eff804
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## 0.13.0 / 2013-12-04
|
2
|
+
|
3
|
+
### New features
|
4
|
+
|
5
|
+
* Use Opscode's new buckets for Virtual machines, allowing for downloads of VirtualBox and VMware Fusion/Workstation Bento boxes (Vagrant minimal base boxes). ([@sethvargo][])
|
6
|
+
|
7
|
+
|
1
8
|
## 0.12.0 / 2013-11-29
|
2
9
|
|
3
10
|
### Breaking changes
|
@@ -6,13 +13,13 @@
|
|
6
13
|
|
7
14
|
### New features
|
8
15
|
|
9
|
-
* Major refactor of Vagrantfile generation, to use an ERB template. For more details please consult the `vagrantfile_erb` section of the README. (@
|
10
|
-
* Add `pre_create_command` option to run optional setup such as Bindler. (@fnichol)
|
16
|
+
* Major refactor of Vagrantfile generation, to use an ERB template. For more details please consult the `vagrantfile_erb` section of the README. ([@fnichol][])
|
17
|
+
* Add `pre_create_command` option to run optional setup such as Bindler. ([@fnichol][])
|
11
18
|
|
12
19
|
### Improvments
|
13
20
|
|
14
|
-
* Pull request #56: Enabled passing options to the synced folders. (@antonio-osorio)
|
15
|
-
* Pull request #55: Fix README badges. (@arangamani)
|
21
|
+
* Pull request [#56][]: Enabled passing options to the synced folders. ([@antonio-osorio][])
|
22
|
+
* Pull request [#55][]: Fix README badges. ([@arangamani][])
|
16
23
|
|
17
24
|
|
18
25
|
## 0.11.3 / 2013-11-09
|
@@ -151,8 +158,12 @@ The initial release.
|
|
151
158
|
[#31]: https://github.com/opscode/kitchen-vagrant/issues/31
|
152
159
|
[#34]: https://github.com/opscode/kitchen-vagrant/issues/34
|
153
160
|
[#36]: https://github.com/opscode/kitchen-vagrant/issues/36
|
161
|
+
[#55]: https://github.com/opscode/kitchen-vagrant/issues/55
|
162
|
+
[#56]: https://github.com/opscode/kitchen-vagrant/issues/56
|
154
163
|
[@TheDude05]: https://github.com/TheDude05
|
155
164
|
[@albertsj1]: https://github.com/albertsj1
|
165
|
+
[@antonio-osorio]: https://github.com/antonio-osorio
|
166
|
+
[@arangamani]: https://github.com/arangamani
|
156
167
|
[@dje]: https://github.com/dje
|
157
168
|
[@fnichol]: https://github.com/fnichol
|
158
169
|
[@fujin]: https://github.com/fujin
|
@@ -165,4 +176,4 @@ The initial release.
|
|
165
176
|
[@petejkim]: https://github.com/petejkim
|
166
177
|
[@sandfish8]: https://github.com/sandfish8
|
167
178
|
[@sethvargo]: https://github.com/sethvargo
|
168
|
-
[@tmatilai]: https://github.com/tmatilai
|
179
|
+
[@tmatilai]: https://github.com/tmatilai
|
data/kitchen-vagrant.gemspec
CHANGED
@@ -11,14 +11,14 @@ Gem::Specification.new do |gem|
|
|
11
11
|
gem.email = ["fnichol@nichol.ca"]
|
12
12
|
gem.description = "Kitchen::Driver::Vagrant - A Vagrant Driver for Test Kitchen."
|
13
13
|
gem.summary = gem.description
|
14
|
-
gem.homepage = "https://github.com/
|
14
|
+
gem.homepage = "https://github.com/test-kitchen/kitchen-vagrant/"
|
15
15
|
|
16
16
|
gem.files = `git ls-files`.split($/)
|
17
17
|
gem.executables = []
|
18
18
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
19
19
|
gem.require_paths = ["lib"]
|
20
20
|
|
21
|
-
gem.add_dependency 'test-kitchen', '~> 1.0
|
21
|
+
gem.add_dependency 'test-kitchen', '~> 1.0'
|
22
22
|
|
23
23
|
gem.add_development_dependency 'cane'
|
24
24
|
gem.add_development_dependency 'tailor'
|
@@ -49,8 +49,7 @@ module Kitchen
|
|
49
49
|
end
|
50
50
|
|
51
51
|
default_config :box_url do |driver|
|
52
|
-
|
53
|
-
"opscode_#{driver.instance.platform.name}_provisionerless.box"
|
52
|
+
driver.default_box_url
|
54
53
|
end
|
55
54
|
|
56
55
|
required_config :box
|
@@ -102,6 +101,14 @@ module Kitchen
|
|
102
101
|
resolve_config!
|
103
102
|
end
|
104
103
|
|
104
|
+
def default_box_url
|
105
|
+
bucket = config[:provider]
|
106
|
+
bucket = 'vmware' if config[:provider] =~ /^vmware_(.+)$/
|
107
|
+
|
108
|
+
"https://opscode-vm-bento.s3.amazonaws.com/vagrant/#{bucket}/" +
|
109
|
+
"opscode_#{instance.platform.name}_chef-provisionerless.box"
|
110
|
+
end
|
111
|
+
|
105
112
|
protected
|
106
113
|
|
107
114
|
WEBSITE = "http://downloads.vagrantup.com/"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kitchen-vagrant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fletcher Nichol
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-12-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: test-kitchen
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.0
|
19
|
+
version: '1.0'
|
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.0
|
26
|
+
version: '1.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: cane
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -84,7 +84,7 @@ files:
|
|
84
84
|
- lib/kitchen/driver/vagrant.rb
|
85
85
|
- lib/kitchen/driver/vagrant_version.rb
|
86
86
|
- templates/Vagrantfile.erb
|
87
|
-
homepage: https://github.com/
|
87
|
+
homepage: https://github.com/test-kitchen/kitchen-vagrant/
|
88
88
|
licenses:
|
89
89
|
- Apache 2.0
|
90
90
|
metadata: {}
|
@@ -104,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
104
|
version: '0'
|
105
105
|
requirements: []
|
106
106
|
rubyforge_project:
|
107
|
-
rubygems_version: 2.0.
|
107
|
+
rubygems_version: 2.0.14
|
108
108
|
signing_key:
|
109
109
|
specification_version: 4
|
110
110
|
summary: Kitchen::Driver::Vagrant - A Vagrant Driver for Test Kitchen.
|