mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
1fac7b79f3
Since we want this flag to be enabled anytime we are running the tests under JRuby, let's enable this at the Rakefile level so people get the performance boost on their local checkout. Moreover, we avoid having to update this particular line anytime the option changes on the JRuby side. The only drawback is that we have to define it in every Rakefile but there's no big deal, this is already the case for other options.
50 lines
1.3 KiB
Ruby
50 lines
1.3 KiB
Ruby
require 'rake/testtask'
|
|
require 'rubygems/package_task'
|
|
|
|
task :default => :test
|
|
|
|
desc "Run all unit tests"
|
|
task :test => 'test:isolated'
|
|
|
|
namespace :test do
|
|
task :isolated do
|
|
dirs = (ENV["TEST_DIR"] || ENV["TEST_DIRS"] || "**").split(",")
|
|
test_files = dirs.map { |dir| "test/#{dir}/*_test.rb" }
|
|
Dir[*test_files].each do |file|
|
|
next true if file.include?("fixtures")
|
|
dash_i = [
|
|
'test',
|
|
'lib',
|
|
"#{File.dirname(__FILE__)}/../activesupport/lib",
|
|
"#{File.dirname(__FILE__)}/../actionpack/lib",
|
|
"#{File.dirname(__FILE__)}/../activemodel/lib"
|
|
]
|
|
ruby "-w", "-I#{dash_i.join ':'}", file
|
|
end
|
|
end
|
|
end
|
|
|
|
Rake::TestTask.new('test:regular') do |t|
|
|
t.libs << 'test' << "#{File.dirname(__FILE__)}/../activesupport/lib"
|
|
t.pattern = 'test/**/*_test.rb'
|
|
t.warning = true
|
|
t.verbose = true
|
|
t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
|
|
end
|
|
|
|
# Generate GEM ----------------------------------------------------------------------------
|
|
|
|
spec = eval(File.read('railties.gemspec'))
|
|
|
|
Gem::PackageTask.new(spec) do |pkg|
|
|
pkg.gem_spec = spec
|
|
end
|
|
|
|
# Publishing -------------------------------------------------------
|
|
|
|
desc "Release to rubygems"
|
|
task :release => :package do
|
|
require 'rake/gemcutter'
|
|
Rake::Gemcutter::Tasks.new(spec).define
|
|
Rake::Task['gem:push'].invoke
|
|
end
|