From 59a9740721b734835812121322d6fe4827b0853a Mon Sep 17 00:00:00 2001 From: Rahul Agarwal Date: Wed, 22 Jul 2026 01:55:18 +0530 Subject: [PATCH] fix(bundler): restore `bu` and add `bua` alias (#13872) * fix(bundler): make `bu` pass arguments through Preserve `bundle update --all` for the no-argument form while allowing specific gems and options to pass through. Fixes #13871 Assisted-by: Claude Fable 5 (Claude Code) * fix(bundler): keep bu as generic update alias * feat(bundler): add alias for update all --- plugins/bundler/README.md | 3 ++- plugins/bundler/bundler.plugin.zsh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/bundler/README.md b/plugins/bundler/README.md index 8280a344c..b322b8d71 100644 --- a/plugins/bundler/README.md +++ b/plugins/bundler/README.md @@ -22,7 +22,8 @@ plugins=(... bundler) | `bo` | `bundle open` | Opens the source directory for a gem in your bundle | | `bout` | `bundle outdated` | List installed gems with newer versions available | | `bp` | `bundle package` | Package your needed .gem files into your application | -| `bu` | `bundle update --all` | Update your gems to the latest available versions | +| `bu` | `bundle update` | Update your gems to the latest available versions | +| `bua` | `bundle update --all` | Update all gems to the latest available versions | ## Gem wrapper diff --git a/plugins/bundler/bundler.plugin.zsh b/plugins/bundler/bundler.plugin.zsh index a496d42de..4af27f4d2 100644 --- a/plugins/bundler/bundler.plugin.zsh +++ b/plugins/bundler/bundler.plugin.zsh @@ -9,7 +9,8 @@ alias bl="bundle list" alias bo="bundle open" alias bout="bundle outdated" alias bp="bundle package" -alias bu="bundle update --all" +alias bu="bundle update" +alias bua="bundle update --all" ## Gem wrapper