We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--all
1 parent 81becab commit ff2f16eCopy full SHA for ff2f16e
2 files changed
plugins/bundler/README.md
@@ -22,7 +22,7 @@ plugins=(... bundler)
22
| `bo` | `bundle open` | Opens the source directory for a gem in your bundle |
23
| `bout` | `bundle outdated` | List installed gems with newer versions available |
24
| `bp` | `bundle package` | Package your needed .gem files into your application |
25
-| `bu` | `bundle update` | Update your gems to the latest available versions |
+| `bu` | `bundle update --all` | Update your gems to the latest available versions |
26
27
## Gem wrapper
28
plugins/bundler/bundler.plugin.zsh
@@ -9,7 +9,7 @@ alias bl="bundle list"
9
alias bo="bundle open"
10
alias bout="bundle outdated"
11
alias bp="bundle package"
12
-alias bu="bundle update"
+alias bu="bundle update --all"
13
14
15
0 commit comments