From bc7e771eccf28c412aa79381214138e2ce27539f Mon Sep 17 00:00:00 2001 From: David Gillis Date: Thu, 2 Jul 2026 01:53:57 +0000 Subject: [PATCH] Use released minitest-reporters gem instead of git source The released minitest-reporters 1.8.0 now depends on minitest (>= 5.0, < 7), so it supports this project's minitest ~> 6.0. That constraint was the reason the gem was pinned to the git source; it is fixed in the release, so switch to the published gem. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 7086925..bf364c6 100644 --- a/Gemfile +++ b/Gemfile @@ -7,7 +7,7 @@ gem "gempilot", "~> 0.1" gem "irb", "~> 1.17" gem "minitest", "~> 6.0" gem "minitest-mock", "~> 5.0" -gem "minitest-reporters", github: "minitest-reporters/minitest-reporters" +gem "minitest-reporters", "~> 1.8" gem "rake" gem "rspec", "~> 3.0" gem "rubocop"