Keith Schacht’s Weblog

Subscribe

💡 TIL: Bundler can be configured to auto install

28th April 2025

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`.

More recent articles

This is Bundler can be configured to auto install by Keith Schacht, posted on 28th April 2025.

Part of series Today I Learned

  1. Regex within string square brackets - Feb. 24, 2025, 3:16 p.m.
  2. Ruby's clamp method reduces conditionals - Feb. 24, 2025, 3:19 p.m.
  3. React in Rails is gaining momentum with Inertia - April 14, 2025, 11:44 p.m.
  4. Bundler can be configured to auto install - April 28, 2025, 3:35 p.m.
  5. with_defaults is a better named alias - April 28, 2025, 3:36 p.m.

Next: with_defaults is a better named alias

Previous: React in Rails is gaining momentum with Inertia