forked from blowmage/minitest-rails-capybara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
30 lines (21 loc) · 748 Bytes
/
Rakefile
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
26
27
28
29
30
# -*- ruby -*-
require "rubygems"
require "hoe"
Hoe.plugin :git
Hoe.plugin :gemspec
Hoe.spec "minitest-rails-capybara" do
developer "Mike Moore", "[email protected]"
self.summary = "Capybara integration for Minitest and Rails"
self.description = "Adds Capybara feature tests in Minitest and Rails."
self.urls = ["http://blowmage.com/minitest-rails-capybara"]
self.history_file = "CHANGELOG.rdoc"
self.readme_file = "README.rdoc"
self.testlib = :minitest
license "MIT"
dependency "minitest-rails", "~> 3.0"
dependency "capybara", "~> 2.7"
dependency "minitest-capybara", "~> 0.8"
dependency "minitest-metadata", "~> 0.6"
end
Dir["tasks/**/*.rake"].each { |t| load t }
# vim: syntax=ruby