# # Author:: Christian Reiniger # License:: GNU GPL v2 or later, as described in the accompanying LICENSE file # # ---- # Last change: # # CVS User:: $Author: creinig $ # Date:: $Date: 2006-10-18 22:29:59 +0200 (Wed, 18 Oct 2006) $ # Revision:: $Revision: 104 $ # desc "(USE THIS) generate documentation" task :dsadmin_doc do libdir = "./lib/" srcdirs = "./app ./lib" system("rdoc --all --fmt html --include #{libdir} --inline-source " + "--line-numbers " + "--op ./doc/api --title 'DsAdmin API Documentation' " + "./README ./doc/src/* #{srcdirs}") end