From 9d914994580c750ba30b98d14d3d2958ecb37817 Mon Sep 17 00:00:00 2001 From: Matt Brictson Date: Sat, 5 Nov 2022 15:20:57 -0700 Subject: [PATCH] Disable rubocop duplicate gem check --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 08d2961..6429e6a 100644 --- a/Gemfile +++ b/Gemfile @@ -13,8 +13,8 @@ if RUBY_VERSION == "1.9.3" gem "tins", "~> 1.6.0" elsif RUBY_VERSION < "2.6" # These gems need specific versions for Ruby < 2.6 - gem "minitest", "< 5.16" - gem "net-ssh", "< 7" + gem "minitest", "< 5.16" # rubocop:disable Bundler/DuplicatedGem + gem "net-ssh", "< 7" # rubocop:disable Bundler/DuplicatedGem end if RUBY_VERSION >= "2.5"