summaryrefslogtreecommitdiff
path: root/lib/bundler/man
diff options
context:
space:
mode:
authorDavid Rodríguez <[email protected]>2024-12-10 19:05:43 +0100
committergit <[email protected]>2024-12-11 17:56:23 +0000
commite88039ee4c3069b138754525747e55312895b343 (patch)
treef6f7441d508e0bab3c23f8f8cdb022a3d4844cc0 /lib/bundler/man
parent447189d7de7fca4c316b4fa5eafbba0978945c13 (diff)
[rubygems/rubygems] Add missing `--all-platforms` flag to `bundle binstubs --help`
https://github.com/rubygems/rubygems/commit/440b7b8282
Diffstat (limited to 'lib/bundler/man')
-rw-r--r--lib/bundler/man/bundle-binstubs.15
-rw-r--r--lib/bundler/man/bundle-binstubs.1.ronn5
2 files changed, 8 insertions, 2 deletions
diff --git a/lib/bundler/man/bundle-binstubs.1 b/lib/bundler/man/bundle-binstubs.1
index f0c8c59204..d5efa43796 100644
--- a/lib/bundler/man/bundle-binstubs.1
+++ b/lib/bundler/man/bundle-binstubs.1
@@ -4,7 +4,7 @@
.SH "NAME"
\fBbundle\-binstubs\fR \- Install the binstubs of the listed gems
.SH "SYNOPSIS"
-\fBbundle binstubs\fR \fIGEM_NAME\fR [\-\-force] [\-\-path PATH] [\-\-standalone]
+\fBbundle binstubs\fR \fIGEM_NAME\fR [\-\-force] [\-\-path PATH] [\-\-standalone] [\-\-all\-platforms]
.SH "DESCRIPTION"
Binstubs are scripts that wrap around executables\. Bundler creates a small Ruby file (a binstub) that loads Bundler, runs the command, and puts it into \fBbin/\fR\. Binstubs are a shortcut\-or alternative\- to always using \fBbundle exec\fR\. This gives you a file that can be run directly, and one that will always run the correct gem version used by the application\.
.P
@@ -27,4 +27,7 @@ Specify a different shebang executable name than the default (default 'ruby')
.TP
\fB\-\-all\fR
Create binstubs for all gems in the bundle\.
+.TP
+\fB\-\-all\-platforms\fR
+Install binstubs for all platforms\.
diff --git a/lib/bundler/man/bundle-binstubs.1.ronn b/lib/bundler/man/bundle-binstubs.1.ronn
index a96186929f..0ad8a76b64 100644
--- a/lib/bundler/man/bundle-binstubs.1.ronn
+++ b/lib/bundler/man/bundle-binstubs.1.ronn
@@ -3,7 +3,7 @@ bundle-binstubs(1) -- Install the binstubs of the listed gems
## SYNOPSIS
-`bundle binstubs` <GEM_NAME> [--force] [--path PATH] [--standalone]
+`bundle binstubs` <GEM_NAME> [--force] [--path PATH] [--standalone] [--all-platforms]
## DESCRIPTION
@@ -39,3 +39,6 @@ Calling binstubs with [GEM [GEM]] will create binstubs for all given gems.
* `--all`:
Create binstubs for all gems in the bundle.
+
+* `--all-platforms`:
+ Install binstubs for all platforms.