For example, I am developing a gem, and while I am developing, I use pry instead of IRB and debugger for debugging. However, I do not want potential participants to install them (because they may not need them). My first idea was to put them in the Bundler group:
source :rubygems gemspec group :extras do gem "pry" gem "debugger" end
And then people could use:
$ bundle install
But I want them to not be installed by default. Itβs completely that they are not in my Gemfile , but I can still require them (if they exist on the computer). This solution would be ok because I don't care which version they are locked in. It can be done?
source share