generate_index()
protected
Generate an index page which lists all the classes which are documented.
# File lib/rdoc/generator/darkfish.rb, line 202
def generate_index
template_file = @template_dir + 'index.rhtml'
return unless template_file.exist?
debug_msg "Rendering the index page..."
out_file = @basedir + @options.op_dir + 'index.html'
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