Last Updated: December 26, 2018
·
6.758K
· damln

A faster bundle install

Don't install the documentation when installing or updating your gems .
Copy paste that configuration in your ~/.gemrc (create it if needed) :

---
:update_sources: true
:benchmark: false
:backtrace: true
:verbose: true
gem: --no-ri --no-rdoc
install: --no-rdoc --no-ri
update:  --no-rdoc --no-ri

Your bundle install will be faster.

1 Response
Add your response

Also, since the '1.4.0.pre.1' of bundler, you can use -jN parameter to parallelize gem installation.
https://github.com/bundler/bundler/blob/v1.4.0.rc.1/CHANGELOG.md#140pre1-2013-08-04

over 1 year ago ·