I'm installing Ruby on Windows 10. I already installed Ruby 2.3 When I tried to install Rails 4.2.6 I had problems with nokogiri.
Thanks to this questions and answers I was able to solve by installing nokogiri version 1.6.6.4 then rails then version 1.6.8.rc3 like this:
gem install nokogiri -v '1.6.6.4'
gem install rails
gem install nokogiri -v '1.6.8.rc3'
But after that, I'm supposed to include this:
gem 'nokogiri', '>=1.6.8.rc3'
in gemfile.
When asked, the guys says:
Hey, guys, just add
gem 'nokogiri', '>=1.6.8.rc3
in your Rails application Gemfile (outside of the development, test, production group) andrun bundle update nokogiri
.
But I'm not sure where is the Rails application gemfile or which file should I edit. From this previous question I can see how the file content is but there isnt much explanation about where do I find it.
I'm about to take a tutorial in Ruby o Rails, so I'm below noob, and the first page tutorial is about installing Ruby and Rails, it's supposed to install easy except for the nokigiri problem (only a Windows problem it seems).