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
This commit is contained in:
Rahul Agarwal
2026-07-21 13:25:18 -07:00
committed by GitHub
parent 98fe9b81a6
commit 59a9740721
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -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
+2 -1
View File
@@ -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