summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKentaro Takeyama <[email protected]>2023-07-23 10:19:50 +0900
committergit <[email protected]>2023-07-24 23:58:06 +0000
commitf72ddd92be0ea80cfc230c5d972d27f91dd3cb1b ()
treeb5a43a89bc6bce4bdb30fc654484c1174e78e7f7
parentb106cf2eef574535fa2a069493235b00d679d20a (diff)
[rubygems/rubygems] Bundler: Update bundle-outdated(1) man
Updated output examples to current format since the output format has changed since version 2.2.0.dev https://.com/rubygems/rubygems/commit/48d98f906a
-rw-r--r--dir.rb2
-rw-r--r--file.c2
-rw-r--r--lib/bundler/man/bundle-outdated.120
-rw-r--r--lib/bundler/man/bundle-outdated.1.ronn21
4 files changed, 26 insertions, 19 deletions
@@ -390,7 +390,7 @@ class Dir
# enables the pattern extension
# <tt>'{_a_,_b_}'</tt>, which matches pattern _a_ and pattern _b_;
# behaves like a
- # {regexp union}[https://docs.ruby-lang.org/en/master/Regexp.html#method-c-union]
# (e.g., <tt>'(?:_a_|_b_)'</tt>):
#
# pattern = '{LEGAL,BSDL}'
@@ -7707,7 +7707,7 @@ Init_File(void)
* Flag File::FNM_EXTGLOB enables pattern <tt>'{_a_,_b_}'</tt>,
* which matches pattern '_a_' and pattern '_b_';
* behaves like
- * a {regexp union}[https://docs.ruby-lang.org/en/master/Regexp.html#method-c-union]
* (e.g., <tt>'(?:_a_|_b_)'</tt>):
*
* pattern = '{LEGAL,BSDL}'
@@ -83,9 +83,10 @@ If the regular output shows the following:
.
.nf
-* faker (newest 1\.6\.6, installed 1\.6\.5, requested ~> 1\.4) in groups "development, test"
-* hashie (newest 3\.4\.6, installed 1\.2\.0, requested = 1\.2\.0) in groups "default"
-* headless (newest 2\.3\.1, installed 2\.2\.3) in groups "test"
.
.fi
.
@@ -98,7 +99,8 @@ If the regular output shows the following:
.
.nf
-* hashie (newest 3\.4\.6, installed 1\.2\.0, requested = 1\.2\.0) in groups "default"
.
.fi
.
@@ -111,7 +113,8 @@ If the regular output shows the following:
.
.nf
-* headless (newest 2\.3\.1, installed 2\.2\.3) in groups "test"
.
.fi
.
@@ -124,7 +127,8 @@ If the regular output shows the following:
.
.nf
-* faker (newest 1\.6\.6, installed 1\.6\.5, requested ~> 1\.4) in groups "development, test"
.
.fi
.
@@ -137,8 +141,8 @@ Filter options can be combined\. \fB\-\-filter\-minor\fR and \fB\-\-filter\-patc
.
.nf
-* faker (newest 1\.6\.6, installed 1\.6\.5, requested ~> 1\.4) in groups "development, test"
-* headless (newest 2\.3\.1, installed 2\.2\.3) in groups "test"
.
.fi
.
@@ -78,25 +78,28 @@ in the output.
If the regular output shows the following:
- * faker (newest 1.6.6, installed 1.6.5, requested ~> 1.4) in groups "development, test"
- * hashie (newest 3.4.6, installed 1.2.0, requested = 1.2.0) in groups "default"
- * headless (newest 2.3.1, installed 2.2.3) in groups "test"
`--filter-major` would only show:
- * hashie (newest 3.4.6, installed 1.2.0, requested = 1.2.0) in groups "default"
`--filter-minor` would only show:
- * headless (newest 2.3.1, installed 2.2.3) in groups "test"
`--filter-` would only show:
- * faker (newest 1.6.6, installed 1.6.5, requested ~> 1.4) in groups "development, test"
Filter options can be combined. `--filter-minor` and `--filter-` would show:
- * faker (newest 1.6.6, installed 1.6.5, requested ~> 1.4) in groups "development, test"
- * headless (newest 2.3.1, installed 2.2.3) in groups "test"
-
Combining all three `filter` options would be the same result as providing none of them.