Created
March 19, 2012 20:42
-
-
Save myabc/2126969 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
function local_gemfile_on() | |
{ | |
export BUNDLE_GEMFILE='Gemfile.local'; echo "Gemfile.local is being used…" | |
} | |
function local_gemfile_off() | |
{ | |
unset BUNDLE_GEMFILE; echo "Gemfile is being used…" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment