aboutsummaryrefslogtreecommitdiffstats
path: root/man/gemfile.5
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
parent502ad4d39103f91bea96be5c8247057dd39f21e2 (diff)
downloadruby-e8fd720434e270d1021a57607a377b0f0c7517dd.tar.gz
[bundler/bundler] Remove mention to remembered options
And instead educate users on the preferred, non deprecated, way. https://github.com/bundler/bundler/commit/9cd6238da2
Diffstat (limited to 'man/gemfile.5')
-rw-r--r--man/gemfile.512
1 files changed, 6 insertions, 6 deletions
diff --git a/man/gemfile.5 b/man/gemfile.5
index 884a1c5cd2..49e1186a65 100644
--- a/man/gemfile.5
+++ b/man/gemfile.5
@@ -218,23 +218,23 @@ Bundler\.require(:test) # requires the _test_ group
.IP "" 0
.
.P
-The Bundler CLI allows you to specify a list of groups whose gems \fBbundle install\fR should not install with the \fB\-\-without\fR option\. To specify multiple groups to ignore, specify a list of groups separated by spaces\.
+The Bundler CLI allows you to specify a list of groups whose gems \fBbundle install\fR should not install with the \fBwithout\fR configuration\.
+.
+.P
+To specify multiple groups to ignore, specify a list of groups separated by spaces\.
.
.IP "" 4
.
.nf
-bundle install \-\-without test
-bundle install \-\-without development test
+bundle config set without test
+bundle config set without development test
.
.fi
.
.IP "" 0
.
.P
-After running \fBbundle install \-\-without test\fR, bundler will remember that you excluded the test group in the last installation\. The next time you run \fBbundle install\fR, without any \fB\-\-without option\fR, bundler will recall it\.
-.
-.P
Also, calling \fBBundler\.setup\fR with no parameters, or calling \fBrequire "bundler/setup"\fR will setup all groups except for the ones you excluded via \fB\-\-without\fR (since they are not available)\.
.
.P