I'm working with fog under ruby 1.9 but in our new requirements we need to support ruby 1.8.x. I research and found this (https://github.com/fog/fog#ruby-187) that suggest adding:
gem 'nokogiri', '~>1.5.0'
will solve my problem but I'm still getting this error:
Gem::InstallError: mime-types requires Ruby version >= 1.9.2.
BTW, I try to install all the dependencies with this command:
bundle install
Any advice on how to solve this?
Regards