Added by Jan Vacek over 11 years ago
Hello,
I am using Ruby 1.8.7. During bundle install it throw an error that nokogiri 1.6.0 needs ruby 1.9.2. Is there any posibility to say that I want to use nokogiri in version 1.5.10 during the bundle install?
Thank you for your help.
I found the solution. In all Gemfiles, which were using nokogiri, I specified version to the last one, which supports ruby 1.8.7:
gem 'nokogiri', '~> 1.5.10'
and it helped.