forked from thoughtbot/shoulda-context
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
26 lines (22 loc) · 621 Bytes
/
Rakefile
File metadata and controls
26 lines (22 loc) · 621 Bytes
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
require "bundler/setup"
require "bundler/gem_tasks"
require "rake/testtask"
require "pry-byebug"
require_relative "test/support/current_bundle"
load "tasks/shoulda.rake"
Rake::TestTask.new do |t|
t.libs << "test"
t.ruby_opts += ["-w"]
t.pattern = "test/**/*_test.rb"
t.verbose = true
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