Monday, 28th April 2025
💡 TIL: Bundler can be configured to auto install #
No more pulling down changes to a project and realizing I need to run `bundle install`. Run this command once on a dev machine and it’ll auto install whenever new gems are needed: `bundle config --global auto_install true`.
💡 TIL: with_defaults is a better named alias #
`with_defaults` is the same as `reverse_merge` in rails but much better named.