-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
26 lines (21 loc) · 823 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
source "https://rubygems.org"
gem "knife", path: "."
group(:development, :test) do
gem "cheffish", ">= 14" # testing only , but why didn't this need to explicit in chef?
gem "webmock" # testing only
gem "rake"
gem "rspec"
gem "chef-bin", path: "../chef-bin"
end
group(:omnibus_package, :pry) do
gem "pry"
gem "pry-byebug"
gem "pry-stack_explorer"
end
group(:chefstyle) do
gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "main"
end
gem "ohai", git: "https://github.com/chef/ohai.git", branch: "main"
gem "chef", path: ".."
gem "chef-utils", path: File.expand_path("../chef-utils", __dir__) if File.exist?(File.expand_path("../chef-utils", __dir__))
gem "chef-config", path: File.expand_path("../chef-config", __dir__) if File.exist?(File.expand_path("../chef-config", __dir__))