Development gems
# With docker images built for a different environment
Consider this a case where you can’t immediately use gems in the group :development
You might have a /bundle/config
file that looks like:
--- BUNDLE_WITHOUT: "development"
bundle config unset --local without
: Removes theBUNDLE_WITHOUT
setting.bundle install
: Will install the development environment gems.