Sha256: 9ad5812184d848c5f8b5617ca75ec3f70bf7533654c2794e4a2bee4a67c6fc4e
Contents?: true
Size: 823 Bytes
Versions: 9
Compression:
Stored size: 823 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: "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__))
Version data entries
9 entries across 9 versions & 1 rubygems