1

I want to suppress the downloading of ri and rdoc while i install new gems on my windows machine. On linux we can edit .gemrc file. What is a way to do it in Windows?

Rishikesh Shukla
  • 317
  • 1
  • 12

1 Answers1

0

For window user you can use.

(echo install: --no-document && echo update: --no-document) >> c:\ProgramData\gemrc

or

c:\Documents and Settings\All Users\Application Data\gemrc

also you can check below link

How to make --no-ri --no-rdoc the default for gem install?

Community
  • 1
  • 1
Ram Patidar
  • 666
  • 1
  • 6
  • 16