From da1a837cd41dd868973a6eefd8decd4d38d96e27 Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Sat, 30 Nov 2013 19:25:11 -0500 Subject: [PATCH] Refactor Bundler aliases --- modules/ruby/init.zsh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/ruby/init.zsh b/modules/ruby/init.zsh index e323855..89b1345 100644 --- a/modules/ruby/init.zsh +++ b/modules/ruby/init.zsh @@ -43,14 +43,14 @@ alias rb='ruby' # Bundler if (( $+commands[bundle] )); then alias rbb='bundle' - alias rbbe='rbb exec' - alias rbbi='rbb install' - alias rbbl='rbb list' - alias rbbo='rbb open' - alias rbbp='rbb package' - alias rbbu='rbb update' + alias rbbe='bundle exec' + alias rbbi='bundle install --path vendor/bundle' + alias rbbl='bundle list' + alias rbbo='bundle open' + alias rbbp='bundle package' + alias rbbu='bundle update' alias rbbI='rbbi \ - && rbb package \ + && bundle package \ && print .bundle >>! .gitignore \ && print vendor/assets >>! .gitignore \ && print vendor/bundle >>! .gitignore \