diff options
-rw-r--r-- | man/bundle-install.ronn | 5 | ||||
-rw-r--r-- | man/gemfile.5.ronn | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/man/bundle-install.ronn b/man/bundle-install.ronn index 27ade58c7d..4055d726f2 100644 --- a/man/bundle-install.ronn +++ b/man/bundle-install.ronn @@ -50,7 +50,10 @@ update process below under [CONSERVATIVE UPDATING][]. * `--without=<list>`: A space-separated list of groups to skip installing. This is a - [remembered option][REMEMBERED OPTIONS]. + [remembered option][REMEMBERED OPTIONS]. Subsequent use of `--without` + replaces the list of of groups that will be skipped. To totally + clear the list of groups to be skipped (include all groups), + specify `--without ''`. * `--local`: Do not attempt to connect to `rubygems.org`, instead using just diff --git a/man/gemfile.5.ronn b/man/gemfile.5.ronn index d6d5886bf7..8353d70bb9 100644 --- a/man/gemfile.5.ronn +++ b/man/gemfile.5.ronn @@ -91,7 +91,8 @@ 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. +without any `--without option`, bundler will recall it. You can run +`bundle install --without ''` to install all gems with all groups active (none skipped). 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 |