Created
September 24, 2012 08:28
-
-
Save druzn3k/3774922 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export ORIG_GEM_PATH=${GEM_PATH:-} | |
export ORIG_GEM_HOME=${GEM_HOME:-} | |
export ORIG_PATH=${PATH} | |
ohmygems() { | |
name=${1:-} | |
if [ -z "$name" ]; then | |
echo "usage: ohmygems <name or reset>" | |
echo | |
echo " Switches gem home to a (potentially new) named repo." | |
echo " Your previous gems are still visible," | |
echo " but new gem installs will install into ~/.gems/repos/<name>." | |
echo " Use 'reset' to go back to normal." | |
echo | |
echo "Available repos:" | |
echo | |
ls ~/.gem/repos | pr -o2 -l1 | |
echo | |
return | |
elif [ $name = "reset" ]; then | |
echo Resetting repo | |
if [ -z "$ORIG_GEM_HOME" ]; then | |
unset GEM_HOME | |
else | |
GEM_HOME=${ORIG_GEM_HOME} | |
fi | |
GEM_PATH=${ORIG_GEM_PATH} | |
PATH=$ORIG_PATH | |
else | |
echo Switching to $name | |
export GEM_HOME=~/.gem/repos/${name} | |
export GEM_PATH=${ORIG_GEM_HOME}:${ORIG_GEM_PATH} | |
export PATH=${ORIG_PATH}:${GEM_HOME}/bin | |
fi | |
echo | |
echo GEM_PATH=${GEM_PATH:-not set} | |
echo GEM_HOME=${GEM_HOME:-not set} | |
echo PATH=$PATH | |
} | |
alias omg=ohmygems |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment