generate_index()
public
Generate an index page which lists all the classes which are documented.
# File lib/rdoc/generator/darkfish.rb, line 302
def generate_index
setup
template_file = @template_dir + 'index.rhtml'
return unless template_file.exist?
debug_msg "Rendering the index page..."
out_file = @base_dir + @options.op_dir + 'index.html'
rel_prefix = @outputdir.relative_path_from out_file.dirname
search_index_rel_prefix = rel_prefix
search_index_rel_prefix += @asset_rel_path if @file_output
# suppress 1.9.3 warning
asset_rel_prefix = asset_rel_prefix = rel_prefix + @asset_rel_path
@title = @options.title
render_template template_file, out_file do |io| binding end
rescue => e
error = RDoc::Error.new "error generating index.html: #{e.message} (#{e.class})"
error.set_backtrace e.backtrace
raise error
end