forked from rails/rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
40 lines (30 loc) · 814 Bytes
/
Rakefile
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# frozen_string_literal: true
require "rake/testtask"
test_files = FileList["test/**/*_test.rb"]
desc "Default Task"
task default: :test
ENV["RAILS_MINITEST_PLUGIN"] = "true"
# 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 || raise("Failures")
end
end
task :lines do
load File.expand_path("../tools/line_statistics", __dir__)
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"