File: ruby_interpreter.rb

package info (click to toggle)
ruby-vcr 6.0.0%2Breally5.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,192 kB
  • sloc: ruby: 8,440; sh: 177; makefile: 4
file content (7 lines) | stat: -rw-r--r-- 135 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
RUBY_INTERPRETER = if RUBY_PLATFORM == 'java'
  :jruby
elsif defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
  :rubinius
else
  :mri
end