Vendor the external cookbooks

Knife-Zero doesn't include Berkshelf support, so vendoring everything in
the repo is convenient again
This commit is contained in:
Greg Karékinian
2019-10-13 19:17:42 +02:00
parent f4bfe31ac1
commit a32f34b408
1245 changed files with 100630 additions and 0 deletions

20
cookbooks/redis/Gemfile Normal file
View File

@@ -0,0 +1,20 @@
source "https://rubygems.org"
chef_version = ENV.fetch("CHEF_VERSION", "11.16")
gem "chef", "~> #{chef_version}"
gem "chefspec", "~> 4.1.1" if chef_version =~ /^11/
gem "berkshelf", "~> 3.2.1"
gem "foodcritic", "~> 4.0.0"
gem "license_finder", "~> 1.2.0"
gem "rake"
gem "rubocop", "~> 0.27.1"
gem "serverspec", "~> 2.3.1"
group :integration do
gem "busser-serverspec", "~> 0.5.3"
gem "guard-rspec", "~> 4.3.1"
gem "kitchen-vagrant", "~> 0.15.0"
gem "test-kitchen", "~> 1.2.1"
end