summaryrefslogtreecommitdiff
path: root/knife/Gemfile
blob: e854257e5b373634c1b935168a2d6d95f232c730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
source "https://rubygems.org"

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(:chefstyle) do
  gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "master"
end

gem "ohai", git: "https://github.com/chef/ohai.git", branch: "master"
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__))