diff --git a/Rakefile b/Rakefile index 1da0a2d..2e04b83 100644 --- a/Rakefile +++ b/Rakefile @@ -4,14 +4,16 @@ require './lib/webrat.rb' Hoe.new('webrat', Webrat::VERSION) do |p| p.rubyforge_name = 'webrat' - p.author = ['Bryan Helmkamp', 'Seth Fitzsimmons'] - p.email = 'bryan@brynary.com' p.summary = 'Ruby Acceptance Testing for Web applications' + p.developer "Bryan Helmkamp", "bryan@brynary.com" + p.developer "Seth Fitzsimmons", "seth@mojodna.net" + p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n") p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1] p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n") + p.remote_rdoc_dir = '' # Release to root p.test_globs = ['test/**/*_test.rb'] end