aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-10-01 22:56:08 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-10-01 22:56:08 -0300
commit7b740f31cc6f88fe20a51eb7da1468082e6fdb5a (patch)
tree4c73ed55dc6e9a0fe623eea63236afdb55cc12c1 /activejob
parent6aa448255cd5c640dae45963c114418b76f454e0 (diff)
parent1fac7b79f3f524afcd9723bfb0fd72fc5ac53bdf (diff)
downloadrails-7b740f31cc6f88fe20a51eb7da1468082e6fdb5a.tar.gz
rails-7b740f31cc6f88fe20a51eb7da1468082e6fdb5a.tar.bz2
rails-7b740f31cc6f88fe20a51eb7da1468082e6fdb5a.zip
Merge pull request #17088 from robin850/jruby-dev
Follow up to #16613
Diffstat (limited to 'activejob')
-rw-r--r--activejob/Rakefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/activejob/Rakefile b/activejob/Rakefile
index dadd0baf82..a66df8939e 100644
--- a/activejob/Rakefile
+++ b/activejob/Rakefile
@@ -35,6 +35,7 @@ namespace :test do
t.libs << 'test'
t.test_files = FileList['test/cases/**/*_test.rb']
t.verbose = true
+ t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
end
namespace :isolated do
@@ -52,6 +53,7 @@ namespace :test do
t.libs << 'test'
t.test_files = FileList['test/integration/**/*_test.rb']
t.verbose = true
+ t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
end
end
end