I just wanted to understand for my self.
I'm using the nokogiri gem (for parsing HTML). If I got it right to open URLs I need to use a method from the gem 'open-uri'.
But when I include it in my Gemfile (on Windows developer's machine):
gem 'open-uri'
- there is an error while bundle install that it can not find gem.
So If I use require 'open-uri'
- its working.
So can some explain what is going on?