mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-07-04 12:07:21 +02:00
fix(bundler): use new --all syntax (#13837)
This commit is contained in:
@@ -22,7 +22,7 @@ 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` | Update your gems to the latest available versions |
|
||||
| `bu` | `bundle update --all` | Update your gems to the latest available versions |
|
||||
|
||||
## Gem wrapper
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ alias bl="bundle list"
|
||||
alias bo="bundle open"
|
||||
alias bout="bundle outdated"
|
||||
alias bp="bundle package"
|
||||
alias bu="bundle update"
|
||||
alias bu="bundle update --all"
|
||||
|
||||
## Gem wrapper
|
||||
|
||||
|
||||
Reference in New Issue
Block a user