зеркало из https://github.com/github/ruby.git
merged r19975 and r19978 from ruby_1_9_1 into trunk.
* gem_prelude.rb: considers --program-suffix and prefix configure options. * lib/rubygems/defaults.rb: ditto. * test/rubygems/test_gem.rb (@default_dir_re): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19988 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
b39833e1d7
Коммит
e3e645f43a
|
@ -1,3 +1,12 @@
|
|||
Tue Oct 28 16:56:31 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
|
||||
|
||||
* gem_prelude.rb: merged from ruby_1_9_1 branch.
|
||||
considers --program-suffix and prefix configure options.
|
||||
|
||||
* lib/rubygems/defaults.rb: ditto.
|
||||
|
||||
* test/rubygems/test_gem.rb (@default_dir_re): ditto.
|
||||
|
||||
Tue Oct 28 16:13:36 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* tool/make-snapshot: use String#bytesize.
|
||||
|
|
|
@ -113,7 +113,7 @@ if defined?(Gem) then
|
|||
undef_method :gem if method_defined? :gem
|
||||
end
|
||||
|
||||
$".delete File.join(Gem::ConfigMap[:libdir], 'ruby',
|
||||
$".delete File.join(Gem::ConfigMap[:libdir], Gem::ConfigMap[:ruby_install_name],
|
||||
Gem::ConfigMap[:ruby_version], 'rubygems.rb')
|
||||
|
||||
require 'rubygems'
|
||||
|
@ -230,7 +230,7 @@ if defined?(Gem) then
|
|||
|
||||
begin
|
||||
Gem.push_all_highest_version_gems_on_load_path
|
||||
$" << File.join(Gem::ConfigMap[:libdir], "ruby",
|
||||
$" << File.join(Gem::ConfigMap[:libdir], Gem::ConfigMap[:ruby_install_name],
|
||||
Gem::ConfigMap[:ruby_version], "rubygems.rb")
|
||||
rescue Exception => e
|
||||
puts "Error loading gem paths on load path in gem_prelude"
|
||||
|
|
|
@ -21,7 +21,7 @@ module Gem
|
|||
File.join File.dirname(ConfigMap[:sitedir]), 'Gems',
|
||||
ConfigMap[:ruby_version]
|
||||
else
|
||||
File.join(ConfigMap[:libdir], ruby_engine, 'gems',
|
||||
File.join(ConfigMap[:libdir], ConfigMap[:ruby_install_name], 'gems',
|
||||
ConfigMap[:ruby_version])
|
||||
end
|
||||
end
|
||||
|
|
|
@ -11,7 +11,7 @@ class TestGem < RubyGemTestCase
|
|||
super
|
||||
|
||||
@additional = %w[a b].map { |d| File.join @tempdir, d }
|
||||
@default_dir_re = %r|/[Rr]uby/[Gg]ems/[0-9.]+|
|
||||
@default_dir_re = %r|/\.*?[Rr]uby.*?/[Gg]ems/[0-9.]+|
|
||||
end
|
||||
|
||||
def test_self_all_load_paths
|
||||
|
|
Загрузка…
Ссылка в новой задаче