I got a tough problem in ruby and rails.
I have already installed nokogiri-1.6.0, but the rails says that
You have requested:
nokogiri ~> 1.6.0
The bundle currently has nokogiri locked at 1.5.6.
Try running `bundle update nokogiri`
Then I tried "bundle install", it showed the follow:
Gem files will remain installed in /Users/johnhenry/valcuqw/vendor/bundle/gems/nokogiri-1.6.0 for inspection.
Results logged to /Users/johnhenry/valcuqw/vendor/bundle/gems/nokogiri-1.6.0/ext/nokogiri/gem_make.out
An error occurred while installing nokogiri (1.6.0), and Bundler cannot continue.
Make sure that `gem install nokogiri -v '1.6.0'` succeeds before bundling.
In the GEMFILE, I changed to gem "nokogiri", "~> 1.5.6”
, but it told me that
bundle install
Gemfile syntax error:
gem "zip-zip", "~> 0.1" # In Gem hell...
I am totally frustrated. Can someone give me a hand? Thanks!