diff options
author | David RodrÃguez <[email protected]> | 2024-12-10 19:11:07 +0100 |
---|---|---|
committer | git <[email protected]> | 2024-12-11 17:56:24 +0000 |
commit | c4bd744800a53f40a7ee760217f0acdde5da465c (patch) | |
tree | 212a1e04d0bb64d08e4989f81a7442c3c110a57a /lib/bundler/man | |
parent | 5633cff415b3825477205fe5f51bcefc8f355beb (diff) |
[rubygems/rubygems] Normalize whitespace in option lists in man pages
https://github.com/rubygems/rubygems/commit/33ff4f8f2f
Diffstat (limited to 'lib/bundler/man')
-rw-r--r-- | lib/bundler/man/bundle-check.1.ronn | 2 | ||||
-rw-r--r-- | lib/bundler/man/bundle-info.1.ronn | 2 | ||||
-rw-r--r-- | lib/bundler/man/bundle-init.1.ronn | 1 | ||||
-rw-r--r-- | lib/bundler/man/bundle-list.1.ronn | 3 | ||||
-rw-r--r-- | lib/bundler/man/bundle-open.1.ronn | 1 | ||||
-rw-r--r-- | lib/bundler/man/bundle-viz.1.ronn | 4 |
6 files changed, 12 insertions, 1 deletions
diff --git a/lib/bundler/man/bundle-check.1.ronn b/lib/bundler/man/bundle-check.1.ronn index eb3ff1daf9..1428fa0698 100644 --- a/lib/bundler/man/bundle-check.1.ronn +++ b/lib/bundler/man/bundle-check.1.ronn @@ -22,8 +22,10 @@ installed on the local machine, if they satisfy the requirements. * `--dry-run`: Locks the [`Gemfile(5)`][Gemfile(5)] before running the command. + * `--gemfile`: Use the specified gemfile instead of the [`Gemfile(5)`][Gemfile(5)]. + * `--path`: Specify a different path than the system default (`$BUNDLE_PATH` or `$GEM_HOME`). Bundler will remember this value for future installs on this machine. diff --git a/lib/bundler/man/bundle-info.1.ronn b/lib/bundler/man/bundle-info.1.ronn index bfd14f5307..5a5402556c 100644 --- a/lib/bundler/man/bundle-info.1.ronn +++ b/lib/bundler/man/bundle-info.1.ronn @@ -14,4 +14,4 @@ Given a gem name present in your bundle, print the basic information about it ## OPTIONS * `--path`: -Print the path of the given gem + Print the path of the given gem diff --git a/lib/bundler/man/bundle-init.1.ronn b/lib/bundler/man/bundle-init.1.ronn index 7d3cede1f6..5d1fcb6867 100644 --- a/lib/bundler/man/bundle-init.1.ronn +++ b/lib/bundler/man/bundle-init.1.ronn @@ -16,6 +16,7 @@ created [`Gemfile(5)`][Gemfile(5)]. * `--gemspec`: Use the specified .gemspec to create the [`Gemfile(5)`][Gemfile(5)] + * `--gemfile`: Use the specified name for the gemfile instead of `Gemfile` diff --git a/lib/bundler/man/bundle-list.1.ronn b/lib/bundler/man/bundle-list.1.ronn index 68501e58cc..81bee0ac33 100644 --- a/lib/bundler/man/bundle-list.1.ronn +++ b/lib/bundler/man/bundle-list.1.ronn @@ -25,9 +25,12 @@ bundle list --only-group dev test --paths * `--name-only`: Print only the name of each gem. + * `--paths`: Print the path to each gem in the bundle. + * `--without-group=<list>`: A space-separated list of groups of gems to skip during printing. + * `--only-group=<list>`: A space-separated list of groups of gems to print. diff --git a/lib/bundler/man/bundle-open.1.ronn b/lib/bundler/man/bundle-open.1.ronn index a857f3a965..c4a83c8fda 100644 --- a/lib/bundler/man/bundle-open.1.ronn +++ b/lib/bundler/man/bundle-open.1.ronn @@ -23,5 +23,6 @@ Will open the source directory for the 'rack' gem in your bundle. Will open the README.md file of the 'rack' gem source in your bundle. ## OPTIONS + * `--path`: Specify GEM source relative path to open. diff --git a/lib/bundler/man/bundle-viz.1.ronn b/lib/bundler/man/bundle-viz.1.ronn index f220256943..d890a3a775 100644 --- a/lib/bundler/man/bundle-viz.1.ronn +++ b/lib/bundler/man/bundle-viz.1.ronn @@ -22,11 +22,15 @@ The associated gems must also be installed via [`bundle install(1)`](bundle-inst * `--file`, `-f`: The name to use for the generated file. See `--format` option + * `--format`, `-F`: This is output format option. Supported format is png, jpg, svg, dot ... + * `--requirements`, `-R`: Set to show the version of each required dependency. + * `--version`, `-v`: Set to show each gem version. + * `--without`, `-W`: Exclude gems that are part of the specified named group. |