diff options
author | Benoit Daloze <eregontp@gmail.com> | 2017-12-04 11:55:22 +0100 |
---|---|---|
committer | Benoit Daloze <eregontp@gmail.com> | 2018-09-09 16:38:22 +0200 |
commit | abf4fdc610476b77ff9e5676b71328b07be00687 (patch) | |
tree | 78a2c0bb9efa676c8a68a2c9acaef26c2f194d0e /spec | |
parent | 6fe30384dc35c92ced8a28e7896c3340e8cd1e58 (diff) | |
download | bundler-abf4fdc610476b77ff9e5676b71328b07be00687.tar.gz |
Fallback to the standard RUBY_ENGINE_VERSION constant
Diffstat (limited to 'spec')
-rw-r--r-- | spec/support/platforms.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/platforms.rb b/spec/support/platforms.rb index 002350114b..39040a61bd 100644 --- a/spec/support/platforms.rb +++ b/spec/support/platforms.rb @@ -79,7 +79,7 @@ module Spec when "jruby" JRUBY_VERSION else - raise BundlerError, "That RUBY_ENGINE is not recognized" + RUBY_ENGINE_VERSION end end |