summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-21 15:56:41 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-21 15:56:41 +0000
commitc72e6c7b869fa8f454c495cda4dee49d4c72487b (patch)
tree98e1aca78447b901f854d05b743017ebddf6d456 /lib
parent102501e0346e409f44ec6de8ab5800f58b1c630e (diff)
* lib/rdoc/ri/store.rb (save_cache): remove duplicate entries.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29312 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/rdoc/ri/store.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/rdoc/ri/store.rb b/lib/rdoc/ri/store.rb
index 81ffb7e674..db02202f81 100644
--- a/lib/rdoc/ri/store.rb
+++ b/lib/rdoc/ri/store.rb
@@ -172,9 +172,11 @@ class RDoc::RI::Store
def save_cache
# HACK mongrel-1.1.5 documents its files twice
+ @cache[:ancestors]. each do |_, m| m.uniq!; m.sort! end
@cache[:attributes]. each do |_, m| m.uniq!; m.sort! end
@cache[:class_methods]. each do |_, m| m.uniq!; m.sort! end
@cache[:instance_methods].each do |_, m| m.uniq!; m.sort! end
+ @cache[:modules].uniq!; @cache[:modules].sort!
open cache_path, 'wb' do |io|
Marshal.dump @cache, io