Skip to content

Commit ff2f16e

Browse files
fix(bundler): use new --all syntax (ohmyzsh#13837)
1 parent 81becab commit ff2f16e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

plugins/bundler/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ plugins=(... bundler)
2222
| `bo` | `bundle open` | Opens the source directory for a gem in your bundle |
2323
| `bout` | `bundle outdated` | List installed gems with newer versions available |
2424
| `bp` | `bundle package` | Package your needed .gem files into your application |
25-
| `bu` | `bundle update` | Update your gems to the latest available versions |
25+
| `bu` | `bundle update --all` | Update your gems to the latest available versions |
2626

2727
## Gem wrapper
2828

plugins/bundler/bundler.plugin.zsh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ alias bl="bundle list"
99
alias bo="bundle open"
1010
alias bout="bundle outdated"
1111
alias bp="bundle package"
12-
alias bu="bundle update"
12+
alias bu="bundle update --all"
1313

1414
## Gem wrapper
1515

0 commit comments

Comments
 (0)