summaryrefslogtreecommitdiffstats
path: root/lib/puppet/util/rdoc.rb
Commit message (Collapse)AuthorAgeFilesLines
* Fix #1847 - Force re-examination of all files to generate correct indicesBrice Figureau2009-01-131-0/+1
| | | | | | | This bug is in fact a RDoc issue. The work-around is to always force a full parse scan and not only what has changed. Signed-off-by: Brice Figureau <brice-puppet@daysofwonder.com>
* Manifest documentation generationBrice Figureau2008-11-171-0/+85
There is currently two type of documentation generation for manifests (module or modulepath): * RDoc HTML generation for modules and global manifests * console output for sole manifest Both version handles classes, defines, nodes, global variable assignements, and resources when --all is used. The usage is the following: For the rdoc variant: $ puppetdoc --mode rdoc --outputdir doc It uses the puppet.conf configuration file to get the modulepath and manifestdir settings. Those are overridable on the command line with --modulepath and --manifestdir. For the console output version: $ puppetdoc /path/to/manifests Signed-off-by: Brice Figureau <brice-puppet@daysofwonder.com>