bundler supports grouping dependencies. given a a Gemfile like
# Gemfile
# global gems
gem "foo"
group :production do
# production gems
end
group :development do
# development gems
end
what is the best practice to install a specific group only without remembering the option? e.g. (only production group)