summaryrefslogtreecommitdiff
path: root/lib/rdoc
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-08 10:49:19 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-08 10:49:19 +0000
commitedeeefb7a544aadf2f788c8c6f88cb77bd941ac0 (patch)
treea00a32802cbdeded4f0fdf73a6214a7fbf295db1 /lib/rdoc
parent3e39ade457b432a57d63e00d5a9898ca202d26f1 (diff)
Speed up Marshal load, fix bug with nested classes' methods
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14954 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc')
-rw-r--r--lib/rdoc/ri/driver.rb11
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/rdoc/ri/driver.rb b/lib/rdoc/ri/driver.rb
index 9b1e3bea30..98e8a3dc2e 100644
--- a/lib/rdoc/ri/driver.rb
+++ b/lib/rdoc/ri/driver.rb
@@ -267,13 +267,13 @@ Options may also be set in the 'RI' environment variable.
if File.exist? path and
File.mtime(path) >= File.mtime(class_cache_file_path) then
File.open path, 'rb' do |fp|
- Marshal.load fp
+ Marshal.load fp.read
end
else
class_cache = nil
File.open class_cache_file_path, 'rb' do |fp|
- class_cache = Marshal.load fp
+ class_cache = Marshal.load fp.read
end
klass = class_cache[klassname]
@@ -354,7 +354,12 @@ Options may also be set in the 'RI' environment variable.
if class_cache.key? name then
display_class name
else
- klass, meth = name.split(/::|\#|\./)
+ meth = nil
+
+ parts = name.split(/::|\#|\./)
+ meth = parts.pop unless parts.last =~ /^[A-Z]/
+ klass = parts.join '::'
+
cache = load_cache_for klass
# HACK Does not support F.n
abort "Nothing known about #{name}" unless cache