Sha256: 837a13bdedec69fb76e556093366d417d13b721cb8796a5b8e0ed33d92c4f808

Contents?: true

Size: 1.19 KB

Versions: 2

Compression:

Stored size: 1.19 KB

Contents

source "https://rubygems.org"

# Note we do not use the gemspec DSL which restricts to the
# gemspec for the current platform and filters out other platforms
# during a bundle lock operation. We actually want dependencies from
# both of our gemspecs. Also note this this mimics gemspec behavior
# of bundler versions prior to 1.12.0 (https://github.com/bundler/bundler/commit/193a14fe5e0d56294c7b370a0e59f93b2c216eed)
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

2 entries across 2 versions & 1 rubygems

Version Path
knife-17.1.40 Gemfile
knife-17.1.35 Gemfile