webrat/Rakefile

25 lines
761 B
Ruby
Raw Normal View History

2008-03-03 00:35:46 +00:00
require 'rubygems'
require 'hoe'
require './lib/webrat.rb'
2008-03-02 20:14:52 +00:00
2008-03-03 00:35:46 +00:00
Hoe.new('webrat', Webrat::VERSION) do |p|
p.rubyforge_name = 'webrat'
p.summary = 'Ruby Acceptance Testing for Web applications'
2008-03-03 00:55:50 +00:00
p.developer "Bryan Helmkamp", "bryan@brynary.com"
p.developer "Seth Fitzsimmons", "seth@mojodna.net"
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
2008-04-04 14:38:55 +00:00
p.changes = p.paragraphs_of('History.txt', 0..3).join("\n\n")
2008-04-04 14:24:11 +00:00
p.extra_deps << ["hpricot", ">= 0.6"]
2008-03-03 00:35:46 +00:00
2008-03-03 00:55:50 +00:00
p.remote_rdoc_dir = '' # Release to root
2008-03-03 00:35:46 +00:00
p.test_globs = ['test/**/*_test.rb']
2008-03-02 20:14:52 +00:00
end
desc "Upload rdoc to brynary.com"
2008-03-03 00:35:46 +00:00
task :publish_rdoc => :docs do
sh "scp -r doc/ brynary.com:/apps/uploads/webrat"
2008-04-04 14:38:55 +00:00
end