tokuhirom's Blog

.gemrc に --no-ri --no-rdoc の指定をしてインストールを高速化する!

gem でなんかいれるときに

Installing RDoc documentation for rest-client-1.6.7...

とか表示でてきておっせーなー、どうせみねーのにー。とおもっていたのだが、実は .gemrc に指定すればスキップできるとのこと。

↓のサイトを参考に設定しておいた。
http://webonrails.com/2008/12/03/skiping-installation-of-ri-and-rdoc-documentation-while-installing-gems/

---
: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