remove_nodoc(all_hash)
Removes from all_hash the contexts that are nodoc or have no content.
See RDoc::Context#remove_from_documentation?
# File lib/rdoc/store.rb, line 725 def remove_nodoc all_hash all_hash.keys.each do |name| context = all_hash[name] all_hash.delete(name) if context.remove_from_documentation? end end