From 69be75ca4ee2e4803b00b1ccecbd3094afcfeb73 Mon Sep 17 00:00:00 2001 From: Kasper Timm Hansen Date: Sun, 22 Dec 2024 18:56:00 +0100 Subject: [PATCH] Gemfile: fix duplicate minitest addition warning When I bundle installed in Quickdraw I got this warning from Bundler: ``` Your Gemfile lists the gem minitest (>= 0) more than once. You should probably keep only one of them. Remove any duplicate entries and specify the gem only once. While it's not a problem now, it could cause errors if you change the version of one of them later. ``` So I'm guessing we only want the newest minitest declaration for the new RSpec/minitest adapters. --- Gemfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Gemfile b/Gemfile index 1ec91c1..c8ebb5a 100644 --- a/Gemfile +++ b/Gemfile @@ -11,7 +11,6 @@ gem "minitest" if RUBY_ENGINE == "ruby" group :development do gem "rubocop" - gem "minitest" gem "sus" gem "covered" end