Last Updated: February 25, 2016
·
774
· tiegz

bundle_grep

Add to shell rc:

# Search all bundled gems for a term
bundle_grep() {
  grep --color -r "$@" $(bundle show --paths)
}