LoginSignup
19
18

More than 5 years have passed since last update.

Ruby 各インストールコマンド高速(並列)化まとめ

Last updated at Posted at 2014-09-13

個人用にまとめてみました。
Ansibleで作って壊したりして試しているとこの辺りで時間がかかるので。。

rbenv

やりかた

MAKE_OPTS="-j 4" rbenv install 2.0.0-p481

ご参考

rbenv で Ruby 2.0.0 をインストールするときに並列コンパイルする

bundle install

やりかた

bundlerはv1.5以上であること。

bundle install --jobs=4

or

bundle install -j4

予め設定しておくと、指定しなくてよい。

bundle config --global --jobs 4
bundle install

ご参考

Bundlerで並列処理??bundle installを爆速で処理する方法。

rvm

最近使ってなくて未確認だけど、一応。

やりかた

rvm install 1.9.3 -j 3

ご参考

cheat sheets. rvm

19
18
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
19
18