diff options
author | Colby Swandale <colby@taplaboratories.com> | 2017-08-04 13:52:03 +1000 |
---|---|---|
committer | Colby Swandale <colby@taplaboratories.com> | 2017-08-04 19:08:45 +1000 |
commit | 2c5dc254bbadd89e9a601c2f21976c733efdc1cb (patch) | |
tree | 1873a8e4e6a39ec23a4a4ad3638ea91fa9db94d3 /man | |
parent | dedaedcf727af38e78c51b95624d8dea3515529b (diff) | |
download | bundler-2c5dc254bbadd89e9a601c2f21976c733efdc1cb.tar.gz |
implement new list command taken from bundler show
Diffstat (limited to 'man')
-rw-r--r-- | man/bundle-config.ronn | 2 | ||||
-rw-r--r-- | man/bundle-list.ronn | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/man/bundle-config.ronn b/man/bundle-config.ronn index dd315b9955..87d1013129 100644 --- a/man/bundle-config.ronn +++ b/man/bundle-config.ronn @@ -193,6 +193,8 @@ learn more about their operation in [bundle install(1)][bundle-install]. Generate a `gems.rb` instead of a `Gemfile` when running `bundle init`. * `jobs` (`BUNDLE_JOBS`): The number of gems Bundler can install in parallel. Defaults to 1. +* `list_command` (`BUNDLE_LIST_COMMAND`) + Enable new list command feature * `major_deprecations` (`BUNDLE_MAJOR_DEPRECATIONS`): Whether Bundler should print deprecation warnings for behavior that will be changed in the next major version. diff --git a/man/bundle-list.ronn b/man/bundle-list.ronn new file mode 100644 index 0000000000..3a883bf5ff --- /dev/null +++ b/man/bundle-list.ronn @@ -0,0 +1,10 @@ +bundle-list(1) -- List all the gems in the bundle +========================================================================= + +## SYNOPSIS + +`bundle list` + +## DESCRIPTION + +Prints a list of all the gems in the bundle including their version |