mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
d12209cad2
Introduced in d6f2000a67
and was only used by Action Cable. Now handled by Action Cable’s assets:compile task.
38 lines
781 B
Ruby
38 lines
781 B
Ruby
require 'rake/testtask'
|
|
|
|
test_files = Dir.glob('test/**/*_test.rb')
|
|
|
|
desc "Default Task"
|
|
task :default => :test
|
|
|
|
task :package
|
|
|
|
# Run the unit tests
|
|
Rake::TestTask.new do |t|
|
|
t.libs << 'test'
|
|
t.test_files = test_files
|
|
|
|
t.warning = true
|
|
t.verbose = true
|
|
t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
|
|
end
|
|
|
|
namespace :test do
|
|
task :isolated do
|
|
test_files.all? do |file|
|
|
sh(Gem.ruby, '-w', '-Ilib:test', file)
|
|
end or raise "Failures"
|
|
end
|
|
end
|
|
|
|
task :lines do
|
|
load File.expand_path('..', File.dirname(__FILE__)) + '/tools/line_statistics'
|
|
files = FileList["lib/**/*.rb"]
|
|
CodeTools::LineStatistics.new(files).print_loc
|
|
end
|
|
|
|
rule '.rb' => '.y' do |t|
|
|
sh "racc -l -o #{t.name} #{t.source}"
|
|
end
|
|
|
|
task compile: 'lib/action_dispatch/journey/parser.rb'
|