Rakefile in hoe-1.5.1 vs Rakefile in hoe-1.5.2
- old
+ new
@@ -3,14 +3,17 @@
require './lib/hoe.rb'
Hoe.new("hoe", Hoe::VERSION) do |hoe|
hoe.rubyforge_name = "seattlerb"
hoe.developer("Ryan Davis", "ryand-ruby@zenspider.com")
+
+ hoe.multiruby_skip << "rubinius"
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|
if ENV['RDOC'] then
puts "# %-#{max+2}s %s" % [t + "::", d]