Fix Zeus so that it runs again on Ruby >= 2.5.x

Ruby 2.5.0 removed support for the `-ubygems` option ([source][1]). This
was introduced many many years ago so you could say `ruby -rubygems`,
which was just a shortcut for `ruby -r rubygems`. Now that's no longer
there, so we have to update how Zeus starts a Ruby process.

[1]: 9de6c712b6
This commit is contained in:
Elliot Winkler 2018-09-11 00:51:22 -06:00
parent 0f36e3c5c0
commit b5425ccc27
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
{
"command": "ruby -rubygems -r./custom_plan -eZeus.go",
"command": "ruby -r rubygems -r ./custom_plan -e Zeus.go",
"plan": {
"boot": {