1
0
Fork 0
mirror of https://github.com/thoughtbot/shoulda-matchers.git synced 2022-11-09 12:01:38 -05:00
thoughtbot--shoulda-matchers/Rakefile

24 lines
611 B
Text
Raw Normal View History

2011-11-12 17:04:59 -05:00
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'cucumber/rake/task'
require 'appraisal'
RSpec::Core::RakeTask.new do |t|
t.pattern = "spec/**/*_spec.rb"
2010-12-14 18:35:12 -05:00
t.rspec_opts = '--color --format progress'
t.verbose = false
end
2010-12-13 15:56:37 -05:00
Cucumber::Rake::Task.new do |t|
t.fork = false
2010-12-13 15:56:37 -05:00
t.cucumber_opts = ['--format', (ENV['CUCUMBER_FORMAT'] || 'progress')]
end
desc 'Default: run specs and cucumber features'
task :default => [:all]
desc 'Test the plugin under all supported Rails versions.'
2011-05-30 15:11:13 -04:00
task :all => ["appraisal:cleanup", "appraisal:install"] do |t|
exec('rake appraisal spec cucumber')
end