method
update_includes
ruby latest stable - Class:
RDoc ::ClassModule
update_includes()public
Deletes from #includes those whose module has been removed from the documentation.
# File lib/rdoc/class_module.rb, line 776
def update_includes
includes.reject! do |include|
mod = include.module
!(String === mod) && @store.modules_hash[mod.full_name].nil?
end
includes.uniq!
end