From 7c64584629df83046b5489087d4b86f4e0850947 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20VANTOMME?= Date: Tue, 16 Feb 2016 10:47:57 +0100 Subject: [PATCH] Add bundle clean alias --- modules/ruby/init.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/ruby/init.zsh b/modules/ruby/init.zsh index fd707d00..3f666c3e 100644 --- a/modules/ruby/init.zsh +++ b/modules/ruby/init.zsh @@ -53,6 +53,7 @@ alias rb='ruby' # Bundler if (( $+commands[bundle] )); then alias rbb='bundle' + alias rbbc='bundle clean' alias rbbe='bundle exec' alias rbbi='bundle install --path vendor/bundle' alias rbbl='bundle list'