I'm trying to have a console-only bundler group, as described in this article. To make sure things were happening as expected, I both commented out the console-group-loading code in application.rb, and also renamed the bundler group to :consoleX. Much to my surprise, pry is still getting loaded when I fire up the rails console.
group :consoleX do
gem 'pry'
gem 'pry-doc'
gem 'awesome_print'
end
➔ bundle exec rails console Loading development environment (Rails 3.2.3) [1] pry(main)>
If I comment out the group completely, then pry is not loaded.
What's going on here?