Remove Rubinius support

* Fixes https://github.com/ruby/setup-ruby/issues/101
This commit is contained in:
Benoit Daloze
2020-11-09 12:50:25 +01:00
parent c49deecea1
commit efda314f4a
6 changed files with 2 additions and 32 deletions
-2
View File
@@ -227,8 +227,6 @@ async function installBundler(bundlerVersionInput, lockFile, platform, rubyPrefi
console.log(`Using Bundler 2 shipped with ${engine}-${rubyVersion}`)
} else if (engine === 'truffleruby' && bundlerVersion === '1') {
console.log(`Using Bundler 1 shipped with ${engine}`)
} else if (engine === 'rubinius') {
console.log(`Rubinius only supports the version of Bundler shipped with it`)
} else {
const gem = path.join(rubyPrefix, 'bin', 'gem')
await exec.exec(gem, ['install', 'bundler', '-v', `~> ${bundlerVersion}`, '--no-document'])