thoughtbot--shoulda-matchers/Rakefile

24 lines
611 B
Ruby
Raw Normal View History

2011-11-12 22:04:59 +00: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 23:35:12 +00:00
t.rspec_opts = '--color --format progress'
t.verbose = false
end
2010-12-13 20:56:37 +00:00
Cucumber::Rake::Task.new do |t|
t.fork = false
2010-12-13 20:56:37 +00: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 19:11:13 +00:00
task :all => ["appraisal:cleanup", "appraisal:install"] do |t|
exec('rake appraisal spec cucumber')
end