Type:
Class
Constants:
GENERATORS
:
{}
This is the list of supported output generators
This is the driver for generating RDoc output. It handles file parsing and generation of output.
To use this class to generate RDoc output via the API, the recommended way is:
rdoc = RDoc::RDoc.new options = rdoc.load_options # returns an RDoc::Options instance # set extra options rdoc.document options
You can also generate output like the rdoc
executable:
rdoc = RDoc::RDoc.new rdoc.document argv
Where argv
is an array of strings, each corresponding to an
argument you'd give rdoc on the command line. See <tt>rdoc
–help<tt> for details.