2013-02-06 15:56:47 +00:00
|
|
|
From 95ee154e3f3d324f5dcd47ed76f26194f727b5d3 Mon Sep 17 00:00:00 2001
|
|
|
|
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
|
|
|
|
Date: Wed, 6 Feb 2013 14:07:30 +0100
|
|
|
|
Subject: [PATCH] Do not modify global Specification.dirs during installation.
|
|
|
|
|
|
|
|
While gems are installed into --install-dir just fine even without
|
|
|
|
modifications of Specification.dirs, change in it makes inaccessible
|
|
|
|
gems already present on the system.
|
|
|
|
---
|
|
|
|
lib/rubygems/dependency_installer.rb | 7 +------
|
|
|
|
1 file changed, 1 insertion(+), 6 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/lib/rubygems/dependency_installer.rb b/lib/rubygems/dependency_installer.rb
|
|
|
|
index ed90af0..8b6f93f 100644
|
|
|
|
--- a/lib/rubygems/dependency_installer.rb
|
|
|
|
+++ b/lib/rubygems/dependency_installer.rb
|
2013-02-08 23:54:37 +00:00
|
|
|
@@ -60,9 +60,6 @@ class Gem::DependencyInstaller
|
|
|
|
@install_dir = options[:install_dir] || Gem.dir
|
2013-02-06 15:56:47 +00:00
|
|
|
|
|
|
|
if options[:install_dir] then
|
2013-02-08 23:54:37 +00:00
|
|
|
- # HACK shouldn't change the global settings, needed for -i behavior
|
|
|
|
- # maybe move to the install command? See also github #442
|
|
|
|
- Gem::Specification.dirs = @install_dir
|
|
|
|
Gem.ensure_gem_subdirectories @install_dir
|
2013-02-06 15:56:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
--
|
|
|
|
1.8.1
|
|
|
|
|