feat(bundler): add alias for update all

This commit is contained in:
Rahul Agarwal 2026-07-20 13:23:51 +05:30
commit 1ff50dd7ca
2 changed files with 2 additions and 0 deletions

View file

@ -23,6 +23,7 @@ plugins=(... bundler)
| `bout` | `bundle outdated` | List installed gems with newer versions available | | `bout` | `bundle outdated` | List installed gems with newer versions available |
| `bp` | `bundle package` | Package your needed .gem files into your application | | `bp` | `bundle package` | Package your needed .gem files into your application |
| `bu` | `bundle update` | 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 ## Gem wrapper

View file

@ -10,6 +10,7 @@ alias bo="bundle open"
alias bout="bundle outdated" alias bout="bundle outdated"
alias bp="bundle package" alias bp="bundle package"
alias bu="bundle update" alias bu="bundle update"
alias bua="bundle update --all"
## Gem wrapper ## Gem wrapper