Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 646 Bytes

20210311094016-spring_with_rspec.org

File metadata and controls

20 lines (16 loc) · 646 Bytes

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 the BUNDLE_WITHOUT setting.
  • bundle install : Will install the development environment gems.

Bundle config docs