Gemfile in chef-vault-3.4.3 vs Gemfile in chef-vault-4.0.1

- old
+ new

@@ -1,14 +1,27 @@ -source "https://rubygems.org/" +source "https://rubygems.org" gemspec group :development do - gem "chefstyle", git: "https://github.com/chef/chefstyle.git" + gem "chefstyle" gem "chef-zero" gem "rake" gem "rspec", "~> 3.4" gem "aruba", "~> 0.6" gem "simplecov", "~> 0.9" - gem "simplecov-console", "~> 0.2" - gem "chef" + gem "simplecov-console", "~> 0.2.0" + gem "chef", "~> 14.0" # avoids test failures on license acceptance +end + +group :docs do + gem "yard" + gem "redcarpet" + gem "github-markup" +end + +group :debug do + gem "pry" + gem "pry-byebug" + gem "pry-stack_explorer" + gem "rb-readline" end