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.

bundle installを並列で実行するための設定

Posted at

bundle install

おなじみのbundle install
特に初回は非常に遅いですね。
そんなときには試してみると良いかもしれません。

[--jobs=NUMBER]

これで並列に実行してくれる。

bundle install --path=vendor/bundle --jobs=4

こうしておけばいつでも並列で実行してくれる。

bundle config --global jobs 4

設定確認

% bundle config
Settings are listed in order of priority. The top value will be used.
jobs
Set for the current user (/Users/hoge/.bundle/config): "4"
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?