aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/rubygems/basic_specification.rb2
2 files changed, 1 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 770e467c6d..c37db365ad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,11 +3,6 @@ Sun Dec 15 07:09:28 2013 Eric Hodel <drbrain@segment7.net>
* lib/rdoc: Update to RDoc master 263a9e5. This improves the
accessibility of the search box.
-Sun Dec 15 05:28:35 2013 Eric Hodel <drbrain@segment7.net>
-
- * lib/rubygems/basic_specification.rb: Update to RubyGems master
- 9c718fe. Removes code duplication.
-
Sat Dec 14 17:39:00 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
* vm_insnhelper.c (vm_callee_setup_arg_complex): count post
diff --git a/lib/rubygems/basic_specification.rb b/lib/rubygems/basic_specification.rb
index 1b22bb2205..a52377ff22 100644
--- a/lib/rubygems/basic_specification.rb
+++ b/lib/rubygems/basic_specification.rb
@@ -86,7 +86,7 @@ class Gem::BasicSpecification
def find_full_gem_path # :nodoc:
# TODO: also, shouldn't it default to full_name if it hasn't been written?
- path = gem_dir
+ path = File.expand_path File.join(gems_dir, full_name)
path.untaint
path if File.directory? path
end