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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: be1f6aa281e6d30bac21b1d0d2ea90d8aceeb97d
4
- data.tar.gz: 164abbd12a39dda7d94d80473e3e0b5f525ff3d3
3
+ metadata.gz: 84fab63daefe505a96094d12b2af549ac3f112ca
4
+ data.tar.gz: ef0b688fdc859add6afed85e500417d5c1ab566c
5
5
  SHA512:
6
- metadata.gz: 6d54365a1ed0862fecbbb34f4a3185cf6ef98dff6f6a92525767fc0dc87b53c33c523eda2e9a40b4e9c225b00a12df849c6b0db3da4e9d9f6adf32603471b3f8
7
- data.tar.gz: 38001ca6c09018623d6209f480258f36983dd6203b2e7eecbcaded4eb4a1867813b46fd6a44e70a70f506b7eb50a0d706cbcaa0b4f93cac40dca059796d2916d
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. (@fnicho)
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
@@ -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/opscode/kitchen-vagrant/"
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.0.rc'
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
- "https://opscode-vm-bento.s3.amazonaws.com/vagrant/" \
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/"
@@ -21,6 +21,6 @@ module Kitchen
21
21
  module Driver
22
22
 
23
23
  # Version string for Vagrant Kitchen driver
24
- VAGRANT_VERSION = "0.12.0"
24
+ VAGRANT_VERSION = "0.13.0"
25
25
  end
26
26
  end
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.12.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-30 00:00:00.000000000 Z
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.0.rc
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.0.rc
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/opscode/kitchen-vagrant/
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.3
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.