Possible Duplicate:
How to make --no-ri --no-rdoc the default for gem install?
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
Possible Duplicate:
How to make --no-ri --no-rdoc the default for gem install?
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
Just add
gem: --no-ri --no-rdoc
to your ~/.gemrc file
you can alias your gem command for something like
alias geminst='gem install --no-ri --no-rdoc'
To add those flags to ~/.gemrc
only for those specific commands that need them:
install: --no-rdoc --no-ri
update: --no-rdoc --no-ri
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.