From 76208d3008455a7d43fe8cfd0a658a551d9121eb Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 21 Oct 2024 00:00:24 +0900 Subject: [PATCH] railties: Remove unnecessary patches to other gems It seems they are no longer needed. --- gems/railties/6.0/patch.rbs | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/gems/railties/6.0/patch.rbs b/gems/railties/6.0/patch.rbs index b87934c01..bf99a9717 100644 --- a/gems/railties/6.0/patch.rbs +++ b/gems/railties/6.0/patch.rbs @@ -14,23 +14,6 @@ class ERB end end -# Remove the fake Minitest type -# if the real type of Minitest is available -module Minitest - class SummaryReporter - end - - class StatisticsReporter - end -end - -# Remove the fake Rack type -# if the real type of Minitest is available -module Rack - class Server - end -end - # Remove the fake RDoc type # if the real type of Minitest is available module RDoc @@ -42,15 +25,3 @@ module RDoc class Task end end - -# Remove the fake types for Gem::Version -# if the real types are available. -module Gem - class Version - end -end - -# Remove the fake types for FileUtils -# if the real types are available. -module FileUtils -end