Skip to content

Instantly share code, notes, and snippets.

@darinwilson
Created November 16, 2014 04:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darinwilson/a4051ba846d5b6cdad85 to your computer and use it in GitHub Desktop.
Save darinwilson/a4051ba846d5b6cdad85 to your computer and use it in GitHub Desktop.
Generate and open RDocs for any installed gem
#
# usage: gemdoc GEM_NAME
# eg: gemdoc rspec-mocks
#
gemdoc() {
gem rdoc $1 --rdoc
(cd `gem env gemdir`/doc/$1*; open rdoc/index.html)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment