--jobs
(줄여서 -j
) 옵션으로 병렬 설치가 가능합니다. 예를 들어, bundle install -j4
는 4개의 워커를 사용합니다. 새로 번들 인스톨을 할 경우 40-60% 정도의 속도 향상이 있었습니다. 항상 패러렐하게 설치하려면 bundle config --global jobs 4
를 실행하거나 BUNDLE_JOBS
를 설정하세요.
자세한 내용은: Parallel Install
Bundler now supports the ability to use a gem mirror in a Gemfile locally by using bundle config
. bundle config mirror.https://rubygems.org https://rubygems-mirror.org/
Learn More: Source Mirrors
DSL ruby에서 이제 특정 패치레벨을 찾기 위해 :patchlevel
옵션을 사용할 수 있습니다. ruby '2.0.0', :patchlevel => "247"
자세한 내용은: Ruby Directive
bundle install
에서 이제 실패한 다운로드를 재시도할 수 있습니다. 재시도 횟수를 --retry
옵션으로 조정하세요.
자세한 내용은: Retry