aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/Rakefile
blob: 8672ab154259ffc6611008d0efb36eeaa92f111c (plain) (tree)
1
2
3
4
5
6
7
8
9
                             
 
                       
 
                   

             
 
                         

                                 
                  
                  
                                                    


                  
                   
                                                
                                            
                            
     
   
# frozen_string_literal: true

require "rake/testtask"

task default: :test

task :package

Rake::TestTask.new do |t|
  t.libs << "test"
  t.pattern = "test/**/*_test.rb"
  t.warning = true
  t.verbose = true
  t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
end

namespace :test do
  task :isolated do
    Dir.glob("test/**/*_test.rb").all? do |file|
      sh(Gem.ruby, "-w", "-Ilib:test", file)
    end || raise("Failures")
  end
end