Skip to content

Instantly share code, notes, and snippets.

@wasabhi
Created September 27, 2011 20:37
Show Gist options
  • Save wasabhi/1246170 to your computer and use it in GitHub Desktop.
Save wasabhi/1246170 to your computer and use it in GitHub Desktop.
Get your gem dependencies listed out from your Gemfile, assuming you use the single quote throughout.
cat Gemfile | grep -v source | grep -i gem | awk -F\' {'print $2'} | xargs -n 1 gem dependency
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment