Last active
February 18, 2021 21:51
-
-
Save webdev1001/e848abef8064c55c2f6443a282f75651 to your computer and use it in GitHub Desktop.
Array values in the parameter to `Gem.paths=` are deprecated.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array values in the parameter to `Gem.paths=` are deprecated. | |
Please use a String or nil. | |
An Array (...) was passed in from bin/rails:3:in `load' | |
Solution | |
======== | |
https://github.com/rubygems/rubygems/issues/1551 | |
If you came to this issue by googling the error specified in the description of this issue, you should know that it has already been fixed in spring-1.6.4 and all you need to do is to update to latest spring and regenerate binstubs, like this: | |
$ bundle update spring && bundle exec spring binstub --remove --all && bundle exec spring binstub --all | |
If you see | |
========== | |
There is a version mismatch between the spring client (1.7.2) and the server (1.6.4). | |
Restarting to resolve. | |
$ spring stop | |
Will solve it! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment