projects
/
ruby-edje.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a7f6e4d
)
Added an RDoc task.
author
Tilman Sauerbeck
<tilman@code-monkey.de>
Thu, 5 Apr 2007 19:29:38 +0000
(21:29 +0200)
committer
Tilman Sauerbeck
<tilman@code-monkey.de>
Thu, 5 Apr 2007 19:29:38 +0000
(21:29 +0200)
Rakefile
patch
|
blob
|
history
diff --git
a/Rakefile
b/Rakefile
index e8f331604866edc9f2814ce49a2e9a5605fd37a1..f1be607cfe8ff2729b17f5f4986d55e320c05655 100644
(file)
--- a/
Rakefile
+++ b/
Rakefile
@@
-33,3
+33,13
@@
task :install => [ext_lib.so] do |t|
FileUtils::Verbose.mkdir_p(ddir) unless File.directory?(ddir)
FileUtils::Verbose.install(ext_lib.so, ddir, :mode => 0755)
end
+
+Rake::RDocTask.new do |t|
+ t.rdoc_dir = "doc"
+ t.title = "ruby-edje -- Edje bindings for Ruby"
+ t.options = ["--line-numbers", "--inline-source", "--main", "README"]
+ t.rdoc_files = FileList[
+ "AUTHORS", "COPYING", "README",
+ "src/rb_edje_main.c", "src/rb_edje.c", "src/rb_part.c"
+ ]
+end