summaryrefslogtreecommitdiff
path: root/lib/rubygems/installer.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-09-23 21:59:35 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-09-23 22:01:44 +0900
commitb717f73402dc6f2d6ba6a1d72d9c8543a4f2cd27 (patch)
tree9d4a4c198aa124592552c66e2a3e6d130b6486eb /lib/rubygems/installer.rb
parenta46841612c846f00f31ff63d886620d66cdea5b3 (diff)
Revert "Manually merged from https://github.com/rubygems/rubygems/pull/2636"
31a6eaabc165d8a222e176f2c809d90622d88ec2 is obsoleted with https://github.com/rubygems/rubygems/pull/3820
Diffstat (limited to 'lib/rubygems/installer.rb')
-rw-r--r--lib/rubygems/installer.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/rubygems/installer.rb b/lib/rubygems/installer.rb
index 5ee3af1e58..33171a8eb9 100644
--- a/lib/rubygems/installer.rb
+++ b/lib/rubygems/installer.rb
@@ -28,7 +28,6 @@ require 'fileutils'
# file. See Gem.pre_install and Gem.post_install for details.
class Gem::Installer
-
extend Gem::Deprecate
##
@@ -73,7 +72,6 @@ class Gem::Installer
@install_lock = Mutex.new
class << self
-
##
# True if we've warned about PATH not including Gem.bindir
@@ -98,7 +96,6 @@ class Gem::Installer
def exec_format
@exec_format ||= Gem.default_exec_format
end
-
end
##
@@ -111,7 +108,6 @@ class Gem::Installer
end
class FakePackage
-
attr_accessor :spec
attr_accessor :dir_mode
@@ -137,7 +133,6 @@ class Gem::Installer
def copy_to(path)
end
-
end
##
@@ -963,5 +958,4 @@ TEXT
raise Gem::FilePermissionError.new(dir) unless File.writable? dir
end
-
end