summaryrefslogtreecommitdiff
path: root/man/gemfile.5.txt
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-08-14 15:58:18 +0200
committerSHIBATA Hiroshi <hsbt@ruby-lang.org>2019-08-16 14:30:23 +0900
commite8fd720434e270d1021a57607a377b0f0c7517dd (patch)
treeb433a21ab06f3ff611189e1c6a6c97e31687b353 /man/gemfile.5.txt
parent502ad4d39103f91bea96be5c8247057dd39f21e2 (diff)
[bundler/bundler] Remove mention to remembered options
And instead educate users on the preferred, non deprecated, way. https://github.com/bundler/bundler/commit/9cd6238da2
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2366
Diffstat (limited to 'man/gemfile.5.txt')
-rw-r--r--man/gemfile.5.txt14
1 files changed, 5 insertions, 9 deletions
diff --git a/man/gemfile.5.txt b/man/gemfile.5.txt
index 71a57c9691..a37e35aa07 100644
--- a/man/gemfile.5.txt
+++ b/man/gemfile.5.txt
@@ -204,21 +204,17 @@ GEMS
The Bundler CLI allows you to specify a list of groups whose gems bun-
- dle install should not install with the --without option. To specify
- multiple groups to ignore, specify a list of groups separated by spa-
- ces.
+ dle install should not install with the without configuration.
+ To specify multiple groups to ignore, specify a list of groups sepa-
+ rated by spaces.
- bundle install --without test
- bundle install --without development test
+ bundle config set without test
+ bundle config set without development test
- 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.
Also, calling Bundler.setup with no parameters, or calling require
"bundler/setup" will setup all groups except for the ones you excluded