Use Hoe's developer syntax in Rakefile
This commit is contained in:
parent
6c85b294f1
commit
7b85e0d15a
6
Rakefile
6
Rakefile
|
@ -4,14 +4,16 @@ require './lib/webrat.rb'
|
||||||
|
|
||||||
Hoe.new('webrat', Webrat::VERSION) do |p|
|
Hoe.new('webrat', Webrat::VERSION) do |p|
|
||||||
p.rubyforge_name = 'webrat'
|
p.rubyforge_name = 'webrat'
|
||||||
p.author = ['Bryan Helmkamp', 'Seth Fitzsimmons']
|
|
||||||
p.email = 'bryan@brynary.com'
|
|
||||||
p.summary = 'Ruby Acceptance Testing for Web applications'
|
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.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.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.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
|
||||||
|
|
||||||
|
p.remote_rdoc_dir = '' # Release to root
|
||||||
p.test_globs = ['test/**/*_test.rb']
|
p.test_globs = ['test/**/*_test.rb']
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue