From 8b7580568dd850f7867135f49fd72e1c95d8bac2 Mon Sep 17 00:00:00 2001 From: Holger Just Date: Wed, 31 Aug 2011 15:00:26 +0200 Subject: [PATCH] Add be for 'bundle exec' --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 7336db9..afd6678 100755 --- a/.bashrc +++ b/.bashrc @@ -237,9 +237,9 @@ alias ciam='git ci -am' alias got='git' alias goit='git' +alias be="bundle exec" alias rs="rails server -b 127.0.0.1" alias rc="rails console" - alias ss="if [[ -x script/server ]]; then script/server -b 127.0.0.1; else rs; fi" alias sc="if [[ -x script/console ]]; then script/console; else rc; fi"