Created
September 13, 2012 14:33
-
-
Save stephenmckinney/3714689 to your computer and use it in GitHub Desktop.
Using Bundler binstubs when the rest of your team uses RVM gemsets
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
# Ignore RVM gemsets | |
echo "export rvm_ignore_gemsets_flag=1" >> ~/.rvmrc | |
# Activate RVM Bundler binstubs integration | |
chmod +x $rvm_path/hooks/after_cd_bundler | |
# Install bundle with binstubs | |
cd <project> | |
bundle install --binstubs | |
echo "bin/" >> .git/info/exclude |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment