5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

How to install ruby without documentations

Posted at

ruby をインストールするとき、ドキュメントは要らないや…。ということがしばしばあります。例えばサーバや仮想環境へインストールするときとか、rdoc って使いづらいとか…。で、ドキュメントって結構ファイル・システムを消費するし、インストールにも時間かかるし。そういうときのハナシです。

コンパイル時

--disable-install-doc オプションを使います。
./configure help によれば「do not install neither rdoc indexes nor C API documents during install」 とのことです。

./configure --disable-install-doc

gem

ホームディレクトリに .gemrc というファイルを作り、その中身を以下のようにします。

gem: --no-document
gem: --no-ri --no-rdoc

~root にも同様なファイルを作っておいたほうが良い場合もあると思います。例えばサーバへインストールするときとか。

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?