From 1ff50dd7ca96f8e31291afa05b92be8361c83f55 Mon Sep 17 00:00:00 2001 From: Rahul Agarwal Date: Mon, 20 Jul 2026 13:23:51 +0530 Subject: [PATCH] feat(bundler): add alias for update all --- plugins/bundler/README.md | 1 + plugins/bundler/bundler.plugin.zsh | 1 + 2 files changed, 2 insertions(+) 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