We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8562aee commit 27b96a8Copy full SHA for 27b96a8
config.yaml
@@ -17,9 +17,6 @@ server_start_up_timeout: 5
17
# either should be on the $PATH or use full path
18
interpreter: ruby
19
20
-# whether the interpreter is JRuby (XXX poll the interpreter for this info)
21
-is_jruby: false
22
-
23
# whether to run JRuby instance in debug mode
24
debug_jruby: false
25
test-base/test_base.rb
@@ -75,7 +75,7 @@ def interpreter
75
end
76
77
def jruby?
78
- config_load('is_jruby')
+ defined?(RUBY_ENGINE) && RUBY_ENGINE == "jruby"
79
80
81
def debug_jruby?
0 commit comments