File: Rakefile

package info (click to toggle)
ruby-shoulda-context 2.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 476 kB
  • sloc: ruby: 1,712; sh: 200; makefile: 4
file content (25 lines) | stat: -rw-r--r-- 600 bytes parent folder | download
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
require "bundler/setup"
require "bundler/gem_tasks"
require "rake/testtask"

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