From 24f22fefc2c78b028a53e05e0f93580d570c6765 Mon Sep 17 00:00:00 2001 From: Chad Wilken Date: Mon, 24 Jun 2019 12:39:44 -0500 Subject: [PATCH] Added documentation to README for bundle_check_before_install flag --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f1786189..2ca38f62 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,7 @@ set :bundle_without, %w{development test}.join(' ') # this is defaul set :bundle_flags, '--deployment --quiet' # this is default set :bundle_env_variables, {} # this is default set :bundle_clean_options, "" # this is default. Use "--dry-run" if you just want to know what gems would be deleted, without actually deleting them +set :bundle_check_before_install, true # default: true. Set this to false to bypass running `bundle check` before executing `bundle install` ``` You can parallelize the installation of gems with bundler's jobs feature.