Skip to content

Instantly share code, notes, and snippets.

@stephenmckinney
Created September 13, 2012 14:33
Show Gist options
  • Save stephenmckinney/3714689 to your computer and use it in GitHub Desktop.
Save stephenmckinney/3714689 to your computer and use it in GitHub Desktop.
Using Bundler binstubs when the rest of your team uses RVM gemsets
# 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