diff --git a/plugins/bundler/README.md b/plugins/bundler/README.md index 6c63b2c6f..b322b8d71 100644 --- a/plugins/bundler/README.md +++ b/plugins/bundler/README.md @@ -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 diff --git a/plugins/bundler/bundler.plugin.zsh b/plugins/bundler/bundler.plugin.zsh index 53b36f092..4af27f4d2 100644 --- a/plugins/bundler/bundler.plugin.zsh +++ b/plugins/bundler/bundler.plugin.zsh @@ -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