summaryrefslogtreecommitdiff
path: root/lib/rubygems.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rubygems.rb')
-rw-r--r--lib/rubygems.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/rubygems.rb b/lib/rubygems.rb
index c84a67ba76..5ee82c2397 100644
--- a/lib/rubygems.rb
+++ b/lib/rubygems.rb
@@ -307,11 +307,10 @@ module Gem
# package is not available as a gem, return nil.
def self.datadir(gem_name)
-# TODO: deprecate and move to Gem::Specification
-# and drop the extra ", gem_name" which is uselessly redundant
+# TODO: deprecate
spec = @loaded_specs[gem_name]
return nil if spec.nil?
- File.join spec.full_gem_path, "data", gem_name
+ spec.datadir
end
##