We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97e9da6 commit 592ac09Copy full SHA for 592ac09
lib/rubygems/installer.rb
@@ -67,23 +67,6 @@ class Gem::Installer
67
attr_reader :package
68
69
class << self
70
- #
71
- # Changes in rubygems to lazily loading `rubygems/command` (in order to
72
- # lazily load `optparse` as a side effect) affect bundler's custom installer
73
- # which uses `Gem::Command` without requiring it (up until bundler 2.2.29).
74
- # This hook is to compensate for that missing require.
75
76
- # TODO: Remove when rubygems no longer supports running on bundler older
77
- # than 2.2.29.
78
-
79
- def inherited(klass)
80
- if klass.name == "Bundler::RubyGemsGemInstaller"
81
- require "rubygems/command"
82
- end
83
84
- super(klass)
85
86
87
##
88
# Overrides the executable format.
89
#
0 commit comments