I have a rails project (let's call it A) which used to work good. Then I installed Ruby 2.3.1 and now I can't run it anymore.
I used rvm to use the new version for another project (let's call it B), but it seems that after rebooting 2.3.1 is now the default version.
When I tried to run my project A it complained that it couldn't find rake and asked me to run bundle install, which I did.
But now 'bin/rails s' produces:
http://pastebin.com/JVD2zSTEI have tried many solutions:
- locking to version 1.6.8.rc2, or version 1.6.7.1 on Gemfile
- uninstalling the gem
- installing again
- bundle update
( from
https://community.codeship.com/t/nokogiri-isnt-installing-on-ruby-2-3/19/4 )
but nothing seems to fix it.
Here's the output from bundle install:
http://pastebin.com/Vg4vvWh3Project B still runs fine, and it says 'using nokogiri 1.6.7.1'. There's no specified version of nokogiri there. Bundle install from there:
http://pastebin.com/JeiTnfi4Can anyone help me?