This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
build_indices()
public
Generate:
a list of HtmlFile objects for each
TopLevel object.
a list of HtmlClass objects for
each first level class or module in the TopLevel objects
a complete list of all hyperlinkable terms (file, class, module, and method
names)
# File lib/rdoc/generators/html_generator.rb, line 1429
def build_indices
@toplevels.each do |toplevel|
@files << HtmlFile.new(toplevel, @options, FILE_DIR)
end
RDoc::TopLevel.all_classes_and_modules.each do |cls|
build_class_list(cls, @files[0], CLASS_DIR)
end
end