summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorRyan Davis <ryand@zenspider.com>2008-04-01 19:29:03 -0800
committerRyan Davis <ryand@zenspider.com>2008-04-01 19:29:03 -0800
commit612adb7ed22b1f0243255614ef1586955f8058cf (patch)
tree2cd3b071042882f02a6b993e00cf4fafff14f22e /Rakefile
parent386367f333df903e716ad94775196252e8ce3d57 (diff)
downloadhoe-612adb7ed22b1f0243255614ef1586955f8058cf.tar.gz
Added multiruby_skip attribute to hoe.
Filtered more tasks from Rakefile. [git-p4: depot-paths = "//src/hoe/dev/": change = 3889]
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 8cbcae9..281391b 100644
--- a/Rakefile
+++ b/Rakefile
@@ -7,9 +7,10 @@ Hoe.new("hoe", Hoe::VERSION) do |hoe|
hoe.developer("Ryan Davis", "ryand-ruby@zenspider.com")
end
+desc "Generate a list of tasks for doco. RDOC=1 for commented output"
task :tasks do
tasks = `rake -T`.scan(/rake (\w+)\s+# (.*)/)
- tasks.reject! { |t,d| t =~ /^(clobber|re(package|docs))/ }
+ tasks.reject! { |t,d| t =~ /^(clobber|tasks|re(package|docs))/ }
max = tasks.map { |x,y| x.size }.max
tasks.each do |t,d|