RubyFlow The Ruby and Rails community linklog

×

The Ruby and Rails community linklog

Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!

Speed up bundle installs

Here is a quick tip that might speed up your bundle installs. By using bundle config set jobs $(nproc) you can tell bundler to use all of your processors when installing gems in parallel. This should be the default behaviour according to my reading of the source code, but it isn’t.

You can also set this number on a per-run basis with bundle install --jobs=8

More explanation here: https://tosbourn.com/speed-up-bundle-install/

Post a comment

You can use basic HTML markup (e.g. <a>) or Markdown.

As you are not logged in, you will be
directed via GitHub to signup or sign in