Skip to content

Instantly share code, notes, and snippets.

@jjungnickel
Created April 21, 2010 14:25
Show Gist options
  • Save jjungnickel/373868 to your computer and use it in GitHub Desktop.
Save jjungnickel/373868 to your computer and use it in GitHub Desktop.
if [ -d /usr/local/ruby/bin ]; then
PATH="${PATH}:/usr/local/ruby/bin"
fi
if [ -d /usr/local/ruby/lib/ ]; then
export RUBYLIB="${RUBYLIB}:/usr/local/ruby/lib/"
fi
if [ -d /var/local/lib/gems ]; then
export GEM_HOME=/var/local/lib/gems
if [ -d /var/local/lib/gems/bin ]; then
PATH="${PATH}:/var/local/lib/gems/bin"
fi
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment