forked from chef/chef-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
36 lines (30 loc) · 797 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
source "https://rubygems.org"
gemspec
group :test do
gem "rake"
gem "rspec", "~> 3.8"
gem "rspec-expectations", "~> 3.8"
gem "rspec-mocks", "~> 3.8"
gem "cookstyle", "=7.7.2" # this forces dependabot PRs to open which triggers cookstyle CI on the chef generate command
gem "chefstyle", "=1.6.2"
gem "test-kitchen", ">= 2.11.1"
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.6")
gem "chef-zero", "~> 14"
gem "chef", "~> 15"
gem "chef-utils", "=16.6.14"
end
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.7")
gem "ohai", "~> 16"
end
gem "simplecov", require: false
end
group :development do
gem "pry"
gem "pry-byebug"
gem "rb-readline"
end
group :profile do
gem "stackprof"
gem "stackprof-webnav"
gem "memory_profiler"
end