Don't auto generate Gem documentation in Ruby
I always forget to disable generation of gem documenatation until I see it getting generated during install :-(
Do yourself a favor and create a .gemrc
if you don't already have one and add:
gem: --no-document
Now all of your gem installs will be speedier and take up less space.
Some of you may remember --no-ri
& --no-rdoc
, however --no-document
takes care of both.
View the gem documentation for more info
Tweet