[rubygems/rubygems] Normalize whitespace in option lists in man pages

33ff4f8f2f
This commit is contained in:
David Rodríguez 2024-12-10 19:11:07 +01:00 committed by git
parent 5633cff415
commit c4bd744800
6 changed files with 12 additions and 1 deletions

View file

@ -22,8 +22,10 @@ installed on the local machine, if they satisfy the requirements.
* `--dry-run`: * `--dry-run`:
Locks the [`Gemfile(5)`][Gemfile(5)] before running the command. Locks the [`Gemfile(5)`][Gemfile(5)] before running the command.
* `--gemfile`: * `--gemfile`:
Use the specified gemfile instead of the [`Gemfile(5)`][Gemfile(5)]. Use the specified gemfile instead of the [`Gemfile(5)`][Gemfile(5)].
* `--path`: * `--path`:
Specify a different path than the system default (`$BUNDLE_PATH` or `$GEM_HOME`). Specify a different path than the system default (`$BUNDLE_PATH` or `$GEM_HOME`).
Bundler will remember this value for future installs on this machine. Bundler will remember this value for future installs on this machine.

View file

@ -16,6 +16,7 @@ created [`Gemfile(5)`][Gemfile(5)].
* `--gemspec`: * `--gemspec`:
Use the specified .gemspec to create the [`Gemfile(5)`][Gemfile(5)] Use the specified .gemspec to create the [`Gemfile(5)`][Gemfile(5)]
* `--gemfile`: * `--gemfile`:
Use the specified name for the gemfile instead of `Gemfile` Use the specified name for the gemfile instead of `Gemfile`

View file

@ -25,9 +25,12 @@ bundle list --only-group dev test --paths
* `--name-only`: * `--name-only`:
Print only the name of each gem. Print only the name of each gem.
* `--paths`: * `--paths`:
Print the path to each gem in the bundle. Print the path to each gem in the bundle.
* `--without-group=<list>`: * `--without-group=<list>`:
A space-separated list of groups of gems to skip during printing. A space-separated list of groups of gems to skip during printing.
* `--only-group=<list>`: * `--only-group=<list>`:
A space-separated list of groups of gems to print. A space-separated list of groups of gems to print.

View file

@ -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. Will open the README.md file of the 'rack' gem source in your bundle.
## OPTIONS ## OPTIONS
* `--path`: * `--path`:
Specify GEM source relative path to open. Specify GEM source relative path to open.

View file

@ -22,11 +22,15 @@ The associated gems must also be installed via [`bundle install(1)`](bundle-inst
* `--file`, `-f`: * `--file`, `-f`:
The name to use for the generated file. See `--format` option The name to use for the generated file. See `--format` option
* `--format`, `-F`: * `--format`, `-F`:
This is output format option. Supported format is png, jpg, svg, dot ... This is output format option. Supported format is png, jpg, svg, dot ...
* `--requirements`, `-R`: * `--requirements`, `-R`:
Set to show the version of each required dependency. Set to show the version of each required dependency.
* `--version`, `-v`: * `--version`, `-v`:
Set to show each gem version. Set to show each gem version.
* `--without`, `-W`: * `--without`, `-W`:
Exclude gems that are part of the specified named group. Exclude gems that are part of the specified named group.