Generates documentation for file_info (from #parse_files) into the output dir
using the generator selected by the RDoc options
# File lib/rdoc/rdoc.rb, line 523
def generate
if @options.dry_run then
# do nothing
@generator.generate
else
Dir.chdir @options.op_dir do
unless @options.quiet then
$stderr.puts "\nGenerating #{@generator.class.name.sub(/^.*::/, '')} format into #{Dir.pwd}..."
end
@generator.generate
update_output_dir '.', @start_time, @last_modified
end
end
end