Read more

Install a gem without RI and RDdoc

Henning Koch
August 25, 2010Software engineer at makandra GmbH

To improve installation times of gems you can use the following approach:

gem install xyz --no-document
Illustration web development

Do you need DevOps-experts?

Your development team has a full backlog? No time for infrastructure architecture? Our DevOps team is ready to support you!

  • We build reliable cloud solutions with Infrastructure as code
  • We are experts in security, Linux and databases
  • We support your dev team to perform
Read more Show archive.org snapshot

To permanently ignore ri and rdoc when installing gems, add this line to ~/.gemrc:

gem: --no-document

Be aware that eliding local documentation may disable documentation support in your IDE.

Posted by Henning Koch to makandra dev (2010-08-25 14:25)