Sha256: 69fe9b99285d7ba231582ab72f0f8ea19ebf2bc9a9fd784ff316f1785020bb1d

Contents?: true

Size: 827 Bytes

Versions: 7

Compression:

Stored size: 827 Bytes

Contents

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: "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__))

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
knife-17.4.18 Gemfile
knife-17.3.48 Gemfile
knife-17.3.13 Gemfile
knife-17.2.38 Gemfile
knife-17.2.18 Gemfile
knife-17.2.15 Gemfile
knife-17.2.11 Gemfile