vagrant-berkshelf 5.1.1 → 5.1.2

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: 2feaee3fa0bba53fc033e08d798eb92fea7a7d67
4
- data.tar.gz: 118dc4a9f16781b91c4a48cb2e6ae42a548d9a18
3
+ metadata.gz: 5cfa82fd57ba252a84140e6b15c4c69b27f186b6
4
+ data.tar.gz: f930f6e2b730f88c61c910a70c68c333a976b1a1
5
5
  SHA512:
6
- metadata.gz: 3183d6bbb5f5e9e5fe1570ec152b37fc38810452965077d2238325c89183d48945ed7b14e03da87b36c1818b54f2d7334230b9d552e4ee2f81867197e7f757c1
7
- data.tar.gz: 1a35670f803c4785f54b0fd0b2c68c95ea4ae620b417fac1aa1aa742ef3cb3ae7b44eddb40a48d88c4df57359914ee55b0c1f0dfdae8ee63867d94e759e3c304
6
+ metadata.gz: e32f8a5ffa98238897be97451761b959b56164115bf659ef12fabccf43a6a4594134c0f1739f72e8e279f5447be8a610175a9f89b16739b5f09090e8163787d5
7
+ data.tar.gz: a930f2a061c6e61e25333fd0e9c2c1da8128bbaec3082ab3e19c29fe5166a2eaea3b08aa12a06c1d3416cd80672f81fcc671d370db9d8fc350acb02fc88580c3
@@ -8,10 +8,12 @@ branches:
8
8
 
9
9
  matrix:
10
10
  include:
11
- - rvm: 2.2.5
12
- - rvm: 2.3.1
11
+ - rvm: 2.2.8
12
+ - rvm: 2.3.5
13
+ - rvm: 2.4.2
13
14
  - rvm: ruby-head
14
15
  allow_failures:
16
+ - rvm: 2.4.2
15
17
  - rvm: ruby-head
16
18
 
17
19
  script: bundle exec rake
@@ -1,5 +1,10 @@
1
1
  # vagrant-berkshelf Changelog
2
2
 
3
+ ## 5.1.2
4
+
5
+ - Loosen the vagrant dependency to allow for Vagrant 2.X
6
+ - Add deprecation warning to the readme
7
+
3
8
  ## 5.0.0
4
9
 
5
10
  - Bump the Ruby requirement from 1.9 to 2.2
data/README.md CHANGED
@@ -6,11 +6,9 @@ Vagrant Berkshelf is a Vagrant plugin that adds Berkshelf integration to the Che
6
6
 
7
7
  ## vagrant-berkshelf vs. Test Kitchen
8
8
 
9
- This plugin was created before the development of Test Kitchen and its usefulness in a post-Test Kitchen world is questionable. We believe Test Kitchen provides a robust and stable platform for testing cookbooks and we *highly* recommend using Test Kitchen instead of Vagrant for your cookbook testing workflows.
10
-
11
- See Seth Vargo's blog post for additional information:
12
- https://sethvargo.com/the-future-of-vagrant-berkshelf/
9
+ This plugin was created before the development of Test Kitchen, which provides a much simpler and more robust cookbook testing experience. We _highly_ recommend using Test Kitchen instead of Vagrant for your cookbook testing workflows and will not be further maintaining this project. If you are interested in maintaining this project see: <https://github.com/berkshelf/vagrant-berkshelf/issues/321>
13
10
 
11
+ See Seth Vargo's blog post for additional information on Test Kitchen vs. Vagrant Berkshelf: <https://sethvargo.com/the-future-of-vagrant-berkshelf/>
14
12
 
15
13
  ## Installation
16
14
 
@@ -57,7 +55,6 @@ end
57
55
  Thank you to all of our [Contributors](https://github.com/berkshelf/vagrant-berkshelf/graphs/contributors), testers, and users.
58
56
 
59
57
  - Please report issues [on the GitHub issue tracker](https://github.com/berkshelf/berkshelf/issues)
60
- - Hangout with us in #chef or #berkshelf on freenode
61
58
 
62
59
  If you'd like to contribute, please see our [contribution guidelines](https://github.com/berkshelf/vagrant-berkshelf/blob/master/CONTRIBUTING.md) first.
63
60
 
@@ -13,7 +13,7 @@ module VagrantPlugins
13
13
  module Berkshelf
14
14
  class Plugin < Vagrant.plugin("2")
15
15
  # Require a particular version of Vagrant
16
- Vagrant.require_version("~> 1.5")
16
+ Vagrant.require_version(">= 1.5")
17
17
 
18
18
  name "berkshelf"
19
19
  description <<-DESC
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Berkshelf
3
- VERSION = "5.1.1"
3
+ VERSION = "5.1.2"
4
4
  end
5
5
  end
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  ]
19
19
  spec.description = %q{A Vagrant plugin to add Berkshelf integration to the Chef provisioners}
20
20
  spec.summary = spec.description
21
- spec.homepage = 'https://berkshelf.com'
21
+ spec.homepage = 'https://docs.chef.io/berkshelf.html'
22
22
  spec.license = 'Apache 2.0'
23
23
 
24
24
  spec.files = `git ls-files`.split($/)
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
31
31
  The Vagrant Berkshelf plugin requires Berkshelf from the Chef Development Kit.
32
32
  You can download the latest version of the Chef Development Kit from:
33
33
 
34
- https://downloads.chef.io/chef-dk/
34
+ https://downloads.chef.io/chefdk
35
35
 
36
36
  Installing Berkshelf via other methods is not officially supported.
37
37
  EOH
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-berkshelf
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.1
4
+ version: 5.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamie Winsor
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-12-06 00:00:00.000000000 Z
13
+ date: 2017-09-21 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: spork
@@ -90,7 +90,7 @@ files:
90
90
  - spec/spec_helper.rb
91
91
  - spec/unit/vagrant-berkshelf/config_spec.rb
92
92
  - vagrant-berkshelf.gemspec
93
- homepage: https://berkshelf.com
93
+ homepage: https://docs.chef.io/berkshelf.html
94
94
  licenses:
95
95
  - Apache 2.0
96
96
  metadata: {}
@@ -98,7 +98,7 @@ post_install_message: |
98
98
  The Vagrant Berkshelf plugin requires Berkshelf from the Chef Development Kit.
99
99
  You can download the latest version of the Chef Development Kit from:
100
100
 
101
- https://downloads.chef.io/chef-dk/
101
+ https://downloads.chef.io/chefdk
102
102
 
103
103
  Installing Berkshelf via other methods is not officially supported.
104
104
  rdoc_options: []
@@ -116,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
116
116
  version: '0'
117
117
  requirements: []
118
118
  rubyforge_project:
119
- rubygems_version: 2.5.1
119
+ rubygems_version: 2.6.13
120
120
  signing_key:
121
121
  specification_version: 4
122
122
  summary: A Vagrant plugin to add Berkshelf integration to the Chef provisioners