Added an rdoctask.
authorTilman Sauerbeck <tilman@code-monkey.de>
Mon, 28 Mar 2005 20:55:18 +0000 (20:55 +0000)
committerTilman Sauerbeck <tilman@code-monkey.de>
Mon, 28 Mar 2005 20:55:18 +0000 (20:55 +0000)
ChangeLog
Rakefile

index 85dfd23bb8e2ebd559e5db64058163e79634b493..fc06214579d1655a01eba49eaa97b67a8dd21b8f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,5 @@
 --
-$Id: ChangeLog 9 2005-03-28 20:54:45Z tilman $
+$Id: ChangeLog 10 2005-03-28 20:55:18Z tilman $
 ++
 
 2005-03-28 Tilman Sauerbeck (tilman at code-monkey de)
@@ -7,6 +7,7 @@ $Id: ChangeLog 9 2005-03-28 20:54:45Z tilman $
         * Rakefile, test/test_basic.rb: Use 'edj' instead of 'eet'
           as the extension for the test Edjes
         * README: Added basic documentation
+        * Rakefile: Added an RDocTask
 
 2005-03-26 Tilman Sauerbeck (tilman at code-monkey de)
         * lib/redact/app.rb: Use Tempfile's for the Embryo source- and
index 8a74e3316dcdbf18843a74cad071c2b22699f323..13968f721d3846af936790da774502235ceb50d4 100644 (file)
--- a/Rakefile
+++ b/Rakefile
@@ -1,7 +1,8 @@
-# $Id: Rakefile 8 2005-03-28 18:11:12Z tilman $
+# $Id: Rakefile 10 2005-03-28 20:55:18Z tilman $
 
 require "rake/clean"
 require "rake/testtask"
+require "rake/rdoctask"
 
 CLOBBER.include(FileList["test/*.edj"])
 
@@ -30,3 +31,12 @@ Rake::TestTask.new do |t|
        t.test_files = FileList["test/test*.rb"]
        t.verbose = true
 end
+
+Rake::RDocTask.new do |t|
+       t.rdoc_dir = "doc"
+       t.title = "Redact - An Edje Compiler written in Ruby"
+       t.options = ["--line-numbers", "--inline-source", "--main", "README"]
+       t.rdoc_files.include("README", "COPYING", "AUTHORS", "ChangeLog",
+                            "TODO", "lib/redact/redact.rb",
+                            "lib/redact/part.rb", "lib/redact/program.rb")
+end