In certain functionality of my application, I need to use the "open-uri" library, which is native to Ruby and does not have a library for Ruby on Rails.
I'm using a require "open-uri"
where I need it in the application and it's working normally.
I wonder: Since there is no gem to be placed as a dependency there in Gemfile, is there a place I should use to load this "dependency", or can I still give the require where I need to use it?