Hopefully the title says it all - I never use ri nor rdoc and they take too long to install. Is there a config file somewhere that will let me do this

link

feedback

4 Answers

up vote 11 down vote accepted

Just add

gem: --no-ri --no-rdoc

to your ~/.gemrc file

link
Thanks. A very quick and concise answer. Points given! – Chris McCauley Nov 24 '09 at 11:25
feedback

You're looking for the '.gemrc' config file.

link
Points given - thanks – Chris McCauley Nov 24 '09 at 11:24
feedback

you can alias your gem command for something like

alias geminst='gem install --no-ri --no-rdoc'
link
Points given for taking the time but the .gemrc is the correct answer - thanks – Chris McCauley Nov 24 '09 at 11:22
1  
My points given for answering in a general, reproducible way that works for all command line utilities :P – Chuck Vose Nov 24 '09 at 16:10
feedback

Under Windows XP the path to gemrc file is "c:\Documents and Settings\All Users\Application Data\gemrc". And this file is not created by default, you should create it yourself.

link
1  
Under Windows 7 it's C:\ProgramData\gemrc – Slava Tysenchuk Aug 5 '10 at 12:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.