I have a rails application. When I run bundle install
I see all the gems installing and at the end of everything I see this message.
Bundle complete! 71 Gemfile dependencies, 180 gems now installed.
However when I execute rails s
. I get this message:
Ignoring nokogiri-1.6.8 because its extensions are not built. Try: gem pristine nokogiri-1.6.8
Ignoring json-1.8.3 because its extensions are not built. Try: gem pristine json-1.8.3
Ignoring binding_of_caller-0.7.2 because its extensions are not built. Try: gem pristine binding_of_caller-0.7.2
Ignoring bluecloth-2.2.0 because its extensions are not built. Try: gem pristine bluecloth-2.2.0
Could not find libv8-3.16.14.15 in any of the sources
Run `bundle install` to install missing gems.
Why does this happen? I've already ran bundle install
and when I then use bundle show json
I get this /Users/drubio/.rvm/gems/ruby-2.2.5@ohloh-ui/gems/json-1.8.3
The same goes for all the other gems. What is the problem here?