diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2019-04-30 12:15:42 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2019-04-30 12:17:05 -0700 |
commit | 2ea62e01d77630f5d17935ef7551d21e95aae0d0 (patch) | |
tree | 95396835512c385f5eca41c72d68173ffbf3dc74 /Gemfile | |
parent | af6575fd28ff4bf570e5a3cd3b04e114fd12999f (diff) | |
download | chef-2ea62e01d77630f5d17935ef7551d21e95aae0d0.tar.gz |
rubocop Bundler/DuplicatedGem is annoyinglcg/fix-bundling-in-omnibus
issues against Bundler/DuplicatedGem not understanding if-else blocks
have been closed.
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
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" |