mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-08-07 06:08:39 +02:00
feat(bundler): add alias for update all
This commit is contained in:
parent
35182d8105
commit
1ff50dd7ca
2 changed files with 2 additions and 0 deletions
|
|
@ -23,6 +23,7 @@ plugins=(... bundler)
|
|||
| `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 |
|
||||
| `bua` | `bundle update --all` | Update all gems to the latest available versions |
|
||||
|
||||
## Gem wrapper
|
||||
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@ alias bo="bundle open"
|
|||
alias bout="bundle outdated"
|
||||
alias bp="bundle package"
|
||||
alias bu="bundle update"
|
||||
alias bua="bundle update --all"
|
||||
|
||||
## Gem wrapper
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue