diff options
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -13,9 +13,11 @@ gem "ohai", git: "https://github.com/chef/ohai.git", branch: "master" gem "chef-config", path: File.expand_path("../chef-config", __FILE__) if File.exist?(File.expand_path("../chef-config", __FILE__)) if File.exist?(File.expand_path("../chef-bin", __FILE__)) - gem "chef-bin", path: File.expand_path("../chef-bin", __FILE__) # bundling in a git checkout + # bundling in a git checkout + gem "chef-bin", path: File.expand_path("../chef-bin", __FILE__) else - gem "chef-bin" # bundling in omnibus + # bundling in omnibus + gem "chef-bin" # rubocop:disable Bundler/DuplicatedGem end gem "cheffish", "~> 14" |