I don't use RI or RDoc from the gems I install in my machine or in the servers I handle (I use other means of documentation), but every gem I install comes with RI and RDoc by default and I forget to set --no-ri --no-rdoc.

Is there a way to make those two flags the default?

link|improve this question

4  
Looks like the top-rated answer is good... are you going to accept it? – David James Aug 17 '10 at 18:38
1  
@David James Thanks for reminding me. Just did. – Ricardo Acras Aug 18 '10 at 16:16
feedback

7 Answers

up vote 248 down vote accepted

You just add following line to your ~/.gemrc file (it is in your home folder)

gem: --no-ri --no-rdoc
link|improve this answer
1  
Anyway to make this a system wide default without editing /etc/skel and every user's home directory? – user341458 Jan 13 '11 at 3:43
7  
here you go /etc/gemrc – Jirapong Jan 14 '11 at 8:46
1  
/etc/gemrc didn't work for me, but .gemrc did. I wonder if it's rvm specific that it doesn't read the system gemrc? – wjlafrance Sep 4 '11 at 7:54
1  
Yea I'm using RVM and /etc/gemrc doesn't work for me either. – PhilT Sep 21 '11 at 8:27
1  
rvm, try ~/.gemrc should work. – Jirapong Oct 25 '11 at 9:12
show 3 more comments
feedback

Copy-paste from From RVM documentation:

Just add these two lines to your ~/.gemrc or /etc/gemrc:

install: --no-rdoc --no-ri 
update:  --no-rdoc --no-ri

Note: You likely do not want to run this for every gem command, as these args would break some gem X commands. Which is why I did not use gem: --no-rdoc --no-ri in the example above.

link|improve this answer
1  
while the original works, this is the right way about it... – mik Jan 25 at 16:31
feedback

# /home/{user}/.gemrc

---
:update_sources: true
:sources:
- http://gems.rubyforge.org/
- http://gems.github.com
:benchmark: false
:bulk_threshold: 1000
:backtrace: false
:verbose: true
gem: --no-ri --no-rdoc

http://webonrails.com/2008/12/03/skiping-installation-of-ri-and-rdoc-documentation-while-installing-gems/

link|improve this answer
Thanks for this example, perfect to help me strip out the embedded Ruby that I copied & pasted at some point and then resulted in psych errors while installing RubyGems 1.8.10 under Ruby 1.9.2. – stevenhaddox Sep 3 '11 at 15:02
6  
Please don't post "first result on Google" replies. The first result on Google now shows your reply, self-proving why you shouldn't do this. Thanks, of course, for your answer. – wjlafrance Sep 4 '11 at 7:52
4  
Actually, "first result on Google" shows: ""first result on Google" shows: ""first result on Google" shows: ""... ERROR: Stack Overflow. – Félix Saparelli Sep 22 '11 at 6:53
I have to add my thanks for steve's comment (above). I was pulling my hair out as to why I could not install the latest RubyGems. Turns out I had a malformed .gemrc file as well. I kept getting this error: ../.rbenv/versions/1.9.2-p290/lib/ruby/1.9.1/psych.rb:148:in `parse': couldn't parse YAML at line 2 column 10 (Psych::SyntaxError) – wchrisjohnson Nov 4 '11 at 1:35
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|improve this answer
5  
Under Windows 7 it's C:\ProgramData\gemrc – Slava Tysenchuk Aug 5 '10 at 12:33
the win7 location works for windows 200. Also make sure you have "Hide extensions for known file types" off it wont pick up gemrc.txt.... facepalm – jtzero Mar 27 at 17:11
feedback

You don't need to source .gemrc. It is not a bash profile.

link|improve this answer
feedback

You can specify default options using the .gemrc configuration file.

Documentation about gem configuration file

link|improve this answer
feedback

Step by steps:

To create/edit the .gemrc file from the terminal:

vi  ~/.gemrc

You will open a editor called vi. paste in:

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

click 'esc'-button.

type in:

:exit

You can check if everything is correct with this command:

sudo /Applications/TextEdit.app/Contents/MacOS/TextEdit ~/.gemrc
link|improve this answer
1  
To clarify, that last command is OS X specific. It opens the ~/.gemrc file in a texteditor. – Martijn Heemels Jan 16 at 18:18
Anyone with a the last-command for Windows-users? – Andy H Jan 29 at 15:02
~ is representation for home directory. (the following stuff in caps are environment variables) Order of checking directories for .gemrc: 1. Use HOME if it is defined. 2. Use USERPROFILE if it is defined. 3. Use HOMEDRIVE and HOMEPATH together if they are defined. 4. Use the path you get by having Ruby expand “~”. 5. Use “C:/” if you are on a Windows machine. That is per: docs.rubygems.org/read/chapter/12 – Gary S. Weaver Jan 30 at 20:55
Or just echo "gem: --no-ri --no-rdoc" > ~/.gemrc – sjs Apr 25 at 5:26
feedback

Your Answer

 
or
required, but never shown

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