1
0
Fork 0
mirror of https://github.com/teampoltergeist/poltergeist.git synced 2022-11-09 12:05:00 -05:00

Run rspec as the default rake task

This commit is contained in:
Jon Leighton 2011-10-27 23:41:05 +01:00
parent 76fe32debd
commit 93d72cc215
3 changed files with 9 additions and 0 deletions

View file

@ -5,3 +5,4 @@ gemspec
gem 'rspec'
gem 'sinatra'
gem 'json'
gem 'rake'

View file

@ -32,6 +32,7 @@ GEM
rack (1.3.3)
rack-test (0.6.1)
rack (>= 1.0)
rake (0.9.2)
rspec (2.3.0)
rspec-core (~> 2.3.0)
rspec-expectations (~> 2.3.0)
@ -59,5 +60,6 @@ PLATFORMS
DEPENDENCIES
json
poltergeist!
rake
rspec
sinatra

View file

@ -3,3 +3,9 @@ task :autocompile do
"--output lib/capybara/poltergeist/client/compiled " \
"lib/capybara/poltergeist/client/*.coffee"
end
task :test do
system "rspec spec/"
end
task :default => :test