Created
August 28, 2015 21:42
-
-
Save avk/470329c7f7ee0795dbfd to your computer and use it in GitHub Desktop.
opens the home page of the given (installed) gem
This file contains 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
function gem_repo { | |
gem list -d $1 | grep "Homepage: " | sed s/Homepage:\ // | xargs open | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Needs a revision.
| xargs open
currently opens too many gem repos.