mirror of
https://github.com/thoughtbot/shoulda-matchers.git
synced 2022-11-09 12:01:38 -05:00
24 lines
631 B
Ruby
24 lines
631 B
Ruby
require 'bundler/setup'
|
|
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"
|
|
t.rspec_opts = '--color --format progress'
|
|
t.verbose = false
|
|
end
|
|
|
|
Cucumber::Rake::Task.new do |t|
|
|
t.fork = false
|
|
t.cucumber_opts = ['--format', (ENV['CUCUMBER_FORMAT'] || 'progress')]
|
|
end
|
|
|
|
desc 'Test the plugin under all supported Rails versions.'
|
|
task :all => ["appraisal:cleanup", "appraisal:install"] do
|
|
exec('rake appraisal spec cucumber')
|
|
end
|
|
|
|
desc 'Default: run specs and cucumber features'
|
|
task :default => [:all]
|