Add URLs. Fix description and URL for hoe

This commit is contained in:
Bryan Helmkamp 2008-04-04 15:33:34 +01:00
parent 0976b1a18b
commit beee36c291
2 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,8 @@
= Webrat - Ruby Acceptance Testing for Web applications
http://rubyforge.org/projects/webrat
http://github.com/brynary/webrat
* mailto:bryan@brynary.com
* mailto:seth@mojodna.net

View File

@ -9,8 +9,10 @@ Hoe.new('webrat', Webrat::VERSION) do |p|
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]
# require "rubygems"; require "ruby-debug"; Debugger.start; debugger
p.description = p.paragraphs_of('README.txt', 4..6).join("\n\n")
p.url = p.paragraphs_of('README.txt', 1).first.split("\n").first.strip
p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
p.extra_deps << ["hpricot", ">= 0.6"]