mirror of
https://github.com/thoughtbot/shoulda-matchers.git
synced 2022-11-09 12:01:38 -05:00
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:
parent
0f36e3c5c0
commit
b5425ccc27
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"command": "ruby -rubygems -r./custom_plan -eZeus.go",
|
||||
"command": "ruby -r rubygems -r ./custom_plan -e Zeus.go",
|
||||
|
||||
"plan": {
|
||||
"boot": {
|
||||
|
|
Loading…
Add table
Reference in a new issue