In the Gemfile my Rails project, I am starting to have helper gems such as "ruby-debug19", "perftools.rb" or "irbtools". All of them really have nothing to do with the project, but rather are part of my local development. But since I use bundler, I cannot download these gems (even if they are installed on a system scale) unless I add them to the Gemfile. In my opinion, this is a bit of code smell.
For example, I would like to be able to require 'irbtools' in the rails console without adding "irbtools" to my Gemfile.
Is there a way to save helper stones from the Gemfile and still be able to load them for debugging, profiling, etc., when I need them?
ruby ruby-on-rails rubygems bundler
Jo liss
source share