I don't use the RI or RDoc output from the gems I install in my machine or in the servers I handle (I use other means of documentation).
Every gem I install installs RI and RDoc documentation by default, because I forget to set --no-ri --no-rdoc
.
Is there a way to make those two flags the default?
gem server
I remembered that I had these in my$HOME/.gemrc
and really killed me... Google isn't always there. – Overslaughshow-source
as an alternative to generated docs. It will show inline comments, which are generally the same content as the ri/rdoc anyway. – Gouty