Rakefile in hoe-1.4.0 vs Rakefile in hoe-1.5.0
- old
+ new
@@ -1,13 +1,10 @@
# -*- ruby -*-
require './lib/hoe.rb'
-Hoe.new("hoe", Hoe::VERSION) do |p|
- p.rubyforge_name = "seattlerb"
- p.summary = "Hoe is a way to write Rakefiles much easier and cleaner."
- p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
- p.url = p.paragraphs_of('README.txt', 1).first.gsub(/^\* /, '').split(/\n/)
- p.changes = p.paragraphs_of('History.txt', 0..2).join("\n\n")
+Hoe.new("hoe", Hoe::VERSION) do |hoe|
+ hoe.rubyforge_name = "seattlerb"
+ hoe.developer("Ryan Davis", "ryand-ruby@zenspider.com")
end
# vim: syntax=Ruby