summaryrefslogtreecommitdiff
path: root/man/gemfile.5.ronn
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-08-14 15:58:18 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-08-14 19:00:47 +0200
commit9cd6238da27f886561777afaed5468a395ca0b12 (patch)
tree3428b8d325a695a4ac5f02f4ae17910a2f57e042 /man/gemfile.5.ronn
parenta1c97fd7c37ec460ef2e88ad0d247a8d96a8464e (diff)
downloadbundler-9cd6238da27f886561777afaed5468a395ca0b12.tar.gz
Remove mention to remembered options
And instead educate users on the preferred, non deprecated, way.
Diffstat (limited to 'man/gemfile.5.ronn')
-rw-r--r--man/gemfile.5.ronn11
1 files changed, 4 insertions, 7 deletions
diff --git a/man/gemfile.5.ronn b/man/gemfile.5.ronn
index 5e9fda8851..832577130c 100644
--- a/man/gemfile.5.ronn
+++ b/man/gemfile.5.ronn
@@ -159,15 +159,12 @@ The Bundler runtime allows its two main methods, `Bundler.setup` and
Bundler.require(:test) # requires the _test_ group
The Bundler CLI allows you to specify a list of groups whose gems `bundle install` should
-not install with the `--without` option. To specify multiple groups to ignore, specify a
-list of groups separated by spaces.
+not install with the `without` configuration.
- bundle install --without test
- bundle install --without development test
+To specify multiple groups to ignore, specify a list of groups separated by spaces.
-After running `bundle install --without test`, bundler will remember that you excluded
-the test group in the last installation. The next time you run `bundle install`,
-without any `--without option`, bundler will recall it.
+ bundle config set without test
+ bundle config set without development test
Also, calling `Bundler.setup` with no parameters, or calling `require "bundler/setup"`
will setup all groups except for the ones you excluded via `--without` (since they