-
Notifications
You must be signed in to change notification settings - Fork 160
/
Gemfile
39 lines (34 loc) · 880 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
37
38
39
source "https://rubygems.org"
gemspec
group :development do
gem "chefstyle"
gem "rake"
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("3.0.0")
gem "contracts", "~> 0.16.1" # pin until we drop ruby < 2.7
gem "chef-zero"
gem "rspec", "~> 3.0"
gem "aruba", "~> 2.2"
gem "chef", "~> 15.4"
gem "chef-utils", "17.10.68" # pin until we drop ruby 2.5
else
gem "contracts", "~> 0.17"
gem "chef-zero", ">= 15.0.4"
gem "chef", ">= 18.5.0"
gem "rspec", "~> 3.0"
gem "aruba", "~> 2.2"
gem "knife", "~> 18.0"
gem "chef-utils", ">= 18.5.0" # pin until we drop ruby >=3
end
end
group :docs do
gem "yard"
gem "redcarpet"
gem "github-markup"
end
group :debug do
gem "pry"
gem "pry-byebug"
gem "pry-stack_explorer", "~> 0.6.1" # pin until we drop ruby < 2.6
gem "rb-readline"
end
gem "simplecov", require: false