aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/Rakefile
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2014-09-27 16:37:44 +0200
committerRobin Dupret <robin.dupret@gmail.com>2014-09-28 12:04:06 +0200
commit1fac7b79f3f524afcd9723bfb0fd72fc5ac53bdf (patch)
tree7e900691c378ce10023f37c2cdcbae0858aea245 /actionview/Rakefile
parentd63005447b143e3308c9e8e430216cd7bb144c6c (diff)
downloadrails-1fac7b79f3f524afcd9723bfb0fd72fc5ac53bdf.tar.gz
rails-1fac7b79f3f524afcd9723bfb0fd72fc5ac53bdf.tar.bz2
rails-1fac7b79f3f524afcd9723bfb0fd72fc5ac53bdf.zip
Follow up to #16613
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.
Diffstat (limited to 'actionview/Rakefile')
-rw-r--r--actionview/Rakefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/actionview/Rakefile b/actionview/Rakefile
index d56fe9ea76..1b71435948 100644
--- a/actionview/Rakefile
+++ b/actionview/Rakefile
@@ -21,6 +21,7 @@ namespace :test do
t.test_files = Dir.glob('test/template/**/*_test.rb').sort
t.warning = true
t.verbose = true
+ t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
end
namespace :integration do
@@ -30,6 +31,7 @@ namespace :test do
t.test_files = Dir.glob("test/activerecord/*_test.rb")
t.warning = true
t.verbose = true
+ t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
end
desc 'ActionPack Integration Tests'
@@ -38,6 +40,7 @@ namespace :test do
t.test_files = Dir.glob("test/actionpack/**/*_test.rb")
t.warning = true
t.verbose = true
+ t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
end
end
end