fix(bundler): use new --all syntax (#13837)
Some checks failed
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled

This commit is contained in:
Chuck 2026-07-01 05:03:49 -04:00 committed by GitHub
commit ff2f16e8df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ plugins=(... bundler)
| `bo` | `bundle open` | Opens the source directory for a gem in your bundle | | `bo` | `bundle open` | Opens the source directory for a gem in your bundle |
| `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 --all` | Update your gems to the latest available versions |
## Gem wrapper ## Gem wrapper

View file

@ -9,7 +9,7 @@ alias bl="bundle list"
alias bo="bundle open" 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 --all"
## Gem wrapper ## Gem wrapper