Skip to content

Instantly share code, notes, and snippets.

@tralston
Created October 21, 2013 18:54
Show Gist options
  • Save tralston/7088972 to your computer and use it in GitHub Desktop.
Save tralston/7088972 to your computer and use it in GitHub Desktop.
Bundler commands
# 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