Created
January 3, 2012 13:16
-
-
Save groovehunter/1554848 to your computer and use it in GitHub Desktop.
Print name and description of all gems (in bundle)
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
| #!/bin/bash | |
| for gem in `gem list|cut -d" " -f 1` | |
| do | |
| gem specification $gem name | |
| gem specification $gem description | |
| done |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example: