This method is deprecated or moved on the latest stable version. The last existing version (v1_9_3_392) is shown here.
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/top_level.rb, line 241 def self.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