root/trunk/Rakefile.pdoc

Download in other formats: Raw | Text Show revision log
Revision:
Log:

add pdoc, not yet implementedsvn add lib/pdoc_template lib/pdoc.rb Rakefile.pdoc

Author:
seb
Date:
Mar 08 2008 * 15:12 (10 months ago)

Unknown file type

A viewable MIME type was not detected. Trying to display the file content as plain text.

1load 'Rakefile'
2
3desc "Create HTML documentation using pdoc"
4task :pdoc => :dist do
5 require 'lib/pdoc'
6 FileUtils.rm_rf "pdoc"
7 FileUtils.mkdir "pdoc"
8 PDoc::Generators::Html::Website.new(File.expand_path(File.join(File.dirname(__FILE__), "lib", "pdoc_template", "pdoc.js"))).render
9end