Created
October 21, 2013 18:54
-
-
Save tralston/7088972 to your computer and use it in GitHub Desktop.
Bundler commands
This file contains hidden or 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
# List all the gems and versions used in your rails project | |
bundle show | |
# Use this to list an individual gem's location. Note that the regular "bundle show" doesn't tell you when a dependency is broken | |
bundle show <gem> | |
# Perform "bundle show <gem>" but for all the gems | |
bundle show | sed -e 's/ \* //g' | sed -e 's/ (.*//g' | xargs -I {} bundle show {} | |
# Try using bundle install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment