From f224af746fbba19de0af42ce6a18921a04b3457c Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Wed, 10 Apr 2013 02:32:38 +0200 Subject: [PATCH] adding the ruby bin directory in PATH --- .bashrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.bashrc b/.bashrc index 9326c3c..445545c 100644 --- a/.bashrc +++ b/.bashrc @@ -17,6 +17,11 @@ export USER_NICKNAME="Rodolphe Breard" export DEBEMAIL="rodolphe.breard@uraniborg.net" export DEBFULLNAME="$USER_NICKNAME" +# Ruby bin directory +if [ -d "$HOME/.gem/ruby/2.0.0/bin" ]; then + export PATH="$PATH:$HOME/.gem/ruby/2.0.0/bin" +fi + # Colors eval $(dircolors -b)