gwynm / webrat forked from brynary/webrat

Webrat - Ruby Acceptance Testing for Web applications

This URL has Read+Write access

webrat / Rakefile
100644 25 lines (19 sloc) 0.761 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'rubygems'
require 'hoe'
require './lib/webrat.rb'
 
Hoe.new('webrat', Webrat::VERSION) do |p|
  p.rubyforge_name = 'webrat'
  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', 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..3).join("\n\n")
 
  p.extra_deps << ["hpricot", ">= 0.6"]
  
  p.remote_rdoc_dir = '' # Release to root
  p.test_globs = ['test/**/*_test.rb']
end
 
desc "Upload rdoc to brynary.com"
task :publish_rdoc => :docs do
  sh "scp -r doc/ brynary.com:/apps/uploads/webrat"
end