forked from thoughtbot/shoulda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
31 lines (27 loc) · 768 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require 'bundler/setup'
require 'bundler/gem_tasks'
require 'rake/testtask'
require 'pry-byebug'
require_relative 'test/support/current_bundle'
Rake::TestTask.new do |t|
t.libs << 'test'
t.ruby_opts += ['-w']
t.pattern = 'test/**/*_test.rb'
t.verbose = false
end
task :default do
if Tests::CurrentBundle.instance.appraisal_in_use?
Rake::Task['test'].invoke
elsif ENV['CI']
exec 'appraisal install && appraisal rake --trace'
else
appraisal = Tests::CurrentBundle.instance.latest_appraisal
exec "appraisal install && appraisal #{appraisal} rake --trace"
end
end
namespace :appraisal do
task :list do
appraisals = Tests::CurrentBundle.instance.available_appraisals
puts "Valid appraisals: #{appraisals.join(', ')}"
end
end