summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2012-03-12 10:58:00 -0700
committerRyan Bigg <radarlistener@gmail.com>2012-03-12 10:58:00 -0700
commit43a74f9cbad794438d935ee28dcdfd331c238c62 (patch)
tree19d339dcd9778a9beb795fb7cf3e8ce4f74f3c83
parentd3003e479b804c41c2970a49732c71fe70f95fd9 (diff)
parent9aedd19ded42e32cbaf51d0dcedcc9dd2ffcbdf6 (diff)
downloadbundler-1-0-stable.tar.gz
Merge pull request #1676 from mattconnolly/1-0-stable-1670-docs1-0-stable
Adding documentation for `--without ` option method of clearing list of ...
-rw-r--r--man/bundle-install.ronn5
-rw-r--r--man/gemfile.5.ronn3
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