Skip to content

Instantly share code, notes, and snippets.

@webdev1001
Last active February 18, 2021 21:51
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save webdev1001/e848abef8064c55c2f6443a282f75651 to your computer and use it in GitHub Desktop.
Save webdev1001/e848abef8064c55c2f6443a282f75651 to your computer and use it in GitHub Desktop.
Array values in the parameter to `Gem.paths=` are deprecated.
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