mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
dd02ec2804
gem 3.5.5 fixed the bad location for this path
29 lines
922 B
Diff
29 lines
922 B
Diff
diff --git a/lib/rubygems.rb b/lib/rubygems.rb
|
|
index 29552d9..814c4f4 100644
|
|
--- a/lib/rubygems.rb
|
|
+++ b/lib/rubygems.rb
|
|
@@ -299,7 +299,7 @@ module Gem
|
|
|
|
def self.bindir(install_dir=Gem.dir)
|
|
return File.join install_dir, "bin" unless
|
|
- install_dir.to_s == Gem.default_dir.to_s
|
|
+ install_dir.to_s == Gem.default_system_dir.to_s
|
|
Gem.default_bindir
|
|
end
|
|
|
|
diff --git a/lib/rubygems/defaults.rb b/lib/rubygems/defaults.rb
|
|
index 8e0182f..aa53e4c 100644
|
|
--- a/lib/rubygems/defaults.rb
|
|
+++ b/lib/rubygems/defaults.rb
|
|
@@ -31,6 +31,10 @@ module Gem
|
|
@default_dir ||= File.join(RbConfig::CONFIG["rubylibprefix"], "gems", RbConfig::CONFIG["ruby_version"])
|
|
end
|
|
|
|
+ def self.default_system_dir
|
|
+ File.join("/usr/local/lib/ruby/gems", RbConfig::CONFIG["ruby_version"])
|
|
+ end
|
|
+
|
|
##
|
|
# Returns binary extensions dir for specified RubyGems base dir or nil
|
|
# if such directory cannot be determined.
|