Use Hoe's developer syntax in Rakefile

This commit is contained in:
Bryan Helmkamp 2008-03-02 19:55:50 -05:00
parent 6c85b294f1
commit 7b85e0d15a
1 changed files with 4 additions and 2 deletions

View File

@ -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