问题
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
回答1:
Just add
gem: --no-ri --no-rdoc
to your ~/.gemrc file
回答2:
You're looking for the '.gemrc' config file.
回答3:
you can alias your gem command for something like
alias geminst='gem install --no-ri --no-rdoc'
回答4:
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.
回答5:
To add those flags to ~/.gemrc
only for those specific commands that need them:
install: --no-rdoc --no-ri
update: --no-rdoc --no-ri
来源:https://stackoverflow.com/questions/1789376/how-do-i-make-no-ri-no-rdoc-the-default-for-gem-install