mirror of
https://github.com/thoughtbot/shoulda-matchers.git
synced 2022-11-09 12:01:38 -05:00
28 lines
617 B
Ruby
28 lines
617 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
|
|
|
|
task :default do |t|
|
|
if ENV['BUNDLE_GEMFILE'] =~ /gemfiles/
|
|
exec 'rake spec cucumber'
|
|
else
|
|
Rake::Task['appraise'].execute
|
|
end
|
|
end
|
|
|
|
task :appraise => ['appraisal:install'] do |t|
|
|
exec 'rake appraisal'
|
|
end
|