diff options
author | Andre Arko <website+github.com@arko.net> | 2011-05-11 00:36:57 -0700 |
---|---|---|
committer | Andre Arko <website+github.com@arko.net> | 2011-05-11 00:36:57 -0700 |
commit | 6621a66a525d85385c3c921382b2b223a0d50c99 (patch) | |
tree | d19f69465bdfe6ae71b69180086236abd4d85a2e /man | |
parent | 71a12febc206f0591b2723ae0707299bcadf4589 (diff) | |
parent | be70bae4d9665dc48003dac2aa79d354d22124c9 (diff) | |
download | bundler-6621a66a525d85385c3c921382b2b223a0d50c99.tar.gz |
Merge pull request #989 from baroquebobcat/master
Adding --standalone documentation to the install man page.
Diffstat (limited to 'man')
-rw-r--r-- | man/bundle-install.ronn | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/man/bundle-install.ronn b/man/bundle-install.ronn index 3b2d5231fb..bfa7bc19b3 100644 --- a/man/bundle-install.ronn +++ b/man/bundle-install.ronn @@ -8,6 +8,7 @@ bundle-install(1) -- Install the dependencies specified in your Gemfile [--without=GROUP1[ GROUP2...]] [--local] [--deployment] [--binstubs[=DIRECTORY]] + [--standalone[=GROUP1[ GROUP2...]]] [--quiet] ## DESCRIPTION @@ -69,6 +70,12 @@ update process below under [CONSERVATIVE UPDATING][]. a `bin/rails` executable that ensures that all dependencies used come from the bundled gems. +* `--standalone[=<list>]`: + Make a bundle that can work without Ruby Gems or Bundler at runtime. + It takes a space separated list of groups to install. It creates a + `bundle` directory and installs the bundle there. It also generates + a `bundle/bundler/setup.rb` file to replace Bundler's own setup. + ## DEPLOYMENT MODE Bundler's defaults are optimized for development. To switch to |