public
Description: A set of commonly used story steps that allow anyone to write rspec stories!
Homepage: http://www.movesonrails.com
Clone URL: git://github.com/foeken/webrat_story_steps.git
webrat_story_steps / Rakefile
100644 22 lines (15 sloc) 0.581 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'rubygems'
require 'hoe'
require 'spec'
require 'spec/rake/spectask'
require 'lib/steps/version'
 
Hoe.new('webrat_story_steps', WebratStorySteps::VERSION) do |p|
  p.rubyforge_name = 'webrat_story_steps'
  p.summary = ''
 
  p.developer "Andre Foeken", "andre.foeken@nedap.com"
 
  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 << ["webrat", ">= 0.2"]
 
  p.remote_rdoc_dir = '' # Release to root
end