mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[rubygems/rubygems] Make --strict
flag of update
and outdated
commands consistent
Previously they had slightly different behavior when combined with
conservative updating flags.
The correct behavior is the `--update-strict` option, so `--script` now
does that, The `--update-strict` option is left there for now but I will
deprecate it later.
ab42046229
This commit is contained in:
parent
7cc0c53169
commit
156079a85d
29 changed files with 43 additions and 61 deletions
|
@ -391,7 +391,7 @@ module Bundler
|
||||||
are up to date, Bundler will exit with a status of 0. Otherwise, it will exit 1.
|
are up to date, Bundler will exit with a status of 0. Otherwise, it will exit 1.
|
||||||
|
|
||||||
For more information on patch level options (--major, --minor, --patch,
|
For more information on patch level options (--major, --minor, --patch,
|
||||||
--update-strict) see documentation on the same options on the update command.
|
--strict) see documentation on the same options on the update command.
|
||||||
D
|
D
|
||||||
method_option "group", :type => :string, :banner => "List gems from a specific group"
|
method_option "group", :type => :string, :banner => "List gems from a specific group"
|
||||||
method_option "groups", :type => :boolean, :banner => "List gems organized by groups"
|
method_option "groups", :type => :boolean, :banner => "List gems organized by groups"
|
||||||
|
@ -399,10 +399,9 @@ module Bundler
|
||||||
"Do not attempt to fetch gems remotely and use the gem cache instead"
|
"Do not attempt to fetch gems remotely and use the gem cache instead"
|
||||||
method_option "pre", :type => :boolean, :banner => "Check for newer pre-release gems"
|
method_option "pre", :type => :boolean, :banner => "Check for newer pre-release gems"
|
||||||
method_option "source", :type => :array, :banner => "Check against a specific source"
|
method_option "source", :type => :array, :banner => "Check against a specific source"
|
||||||
strict_is_update = Bundler.feature_flag.forget_cli_options?
|
method_option "filter-strict", :type => :boolean, :banner =>
|
||||||
method_option "filter-strict", :type => :boolean, :aliases => strict_is_update ? [] : %w[--strict], :banner =>
|
|
||||||
"Only list newer versions allowed by your Gemfile requirements"
|
"Only list newer versions allowed by your Gemfile requirements"
|
||||||
method_option "update-strict", :type => :boolean, :aliases => strict_is_update ? %w[--strict] : [], :banner =>
|
method_option "strict", :type => :boolean, :aliases => "--update-strict", :banner =>
|
||||||
"Strict conservative resolution, do not allow any gem to be updated past latest --patch | --minor | --major"
|
"Strict conservative resolution, do not allow any gem to be updated past latest --patch | --minor | --major"
|
||||||
method_option "minor", :type => :boolean, :banner => "Prefer updating only to next minor version"
|
method_option "minor", :type => :boolean, :banner => "Prefer updating only to next minor version"
|
||||||
method_option "major", :type => :boolean, :banner => "Prefer updating to next major version (default)"
|
method_option "major", :type => :boolean, :banner => "Prefer updating to next major version (default)"
|
||||||
|
|
|
@ -109,7 +109,7 @@ module Bundler
|
||||||
|
|
||||||
definition.gem_version_promoter.tap do |gvp|
|
definition.gem_version_promoter.tap do |gvp|
|
||||||
gvp.level = patch_level.first || :major
|
gvp.level = patch_level.first || :major
|
||||||
gvp.strict = options[:strict] || options["update-strict"] || options["filter-strict"]
|
gvp.strict = options[:strict] || options["filter-strict"]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-ADD" "1" "February 2022" "" ""
|
.TH "BUNDLE\-ADD" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-add\fR \- Add gem to the Gemfile and run bundle install
|
\fBbundle\-add\fR \- Add gem to the Gemfile and run bundle install
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-BINSTUBS" "1" "February 2022" "" ""
|
.TH "BUNDLE\-BINSTUBS" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-binstubs\fR \- Install the binstubs of the listed gems
|
\fBbundle\-binstubs\fR \- Install the binstubs of the listed gems
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-CACHE" "1" "February 2022" "" ""
|
.TH "BUNDLE\-CACHE" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-cache\fR \- Package your needed \fB\.gem\fR files into your application
|
\fBbundle\-cache\fR \- Package your needed \fB\.gem\fR files into your application
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-CHECK" "1" "February 2022" "" ""
|
.TH "BUNDLE\-CHECK" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-check\fR \- Verifies if dependencies are satisfied by installed gems
|
\fBbundle\-check\fR \- Verifies if dependencies are satisfied by installed gems
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-CLEAN" "1" "February 2022" "" ""
|
.TH "BUNDLE\-CLEAN" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-clean\fR \- Cleans up unused gems in your bundler directory
|
\fBbundle\-clean\fR \- Cleans up unused gems in your bundler directory
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-CONFIG" "1" "February 2022" "" ""
|
.TH "BUNDLE\-CONFIG" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-config\fR \- Set bundler configuration options
|
\fBbundle\-config\fR \- Set bundler configuration options
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-DOCTOR" "1" "February 2022" "" ""
|
.TH "BUNDLE\-DOCTOR" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-doctor\fR \- Checks the bundle for common problems
|
\fBbundle\-doctor\fR \- Checks the bundle for common problems
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-EXEC" "1" "February 2022" "" ""
|
.TH "BUNDLE\-EXEC" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-exec\fR \- Execute a command in the context of the bundle
|
\fBbundle\-exec\fR \- Execute a command in the context of the bundle
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-GEM" "1" "February 2022" "" ""
|
.TH "BUNDLE\-GEM" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-gem\fR \- Generate a project skeleton for creating a rubygem
|
\fBbundle\-gem\fR \- Generate a project skeleton for creating a rubygem
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-INFO" "1" "February 2022" "" ""
|
.TH "BUNDLE\-INFO" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-info\fR \- Show information for the given gem in your bundle
|
\fBbundle\-info\fR \- Show information for the given gem in your bundle
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-INIT" "1" "February 2022" "" ""
|
.TH "BUNDLE\-INIT" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-init\fR \- Generates a Gemfile into the current working directory
|
\fBbundle\-init\fR \- Generates a Gemfile into the current working directory
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-INJECT" "1" "February 2022" "" ""
|
.TH "BUNDLE\-INJECT" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-inject\fR \- Add named gem(s) with version requirements to Gemfile
|
\fBbundle\-inject\fR \- Add named gem(s) with version requirements to Gemfile
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-INSTALL" "1" "February 2022" "" ""
|
.TH "BUNDLE\-INSTALL" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-install\fR \- Install the dependencies specified in your Gemfile
|
\fBbundle\-install\fR \- Install the dependencies specified in your Gemfile
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-LIST" "1" "February 2022" "" ""
|
.TH "BUNDLE\-LIST" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-list\fR \- List all the gems in the bundle
|
\fBbundle\-list\fR \- List all the gems in the bundle
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-LOCK" "1" "February 2022" "" ""
|
.TH "BUNDLE\-LOCK" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-lock\fR \- Creates / Updates a lockfile without installing
|
\fBbundle\-lock\fR \- Creates / Updates a lockfile without installing
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-OPEN" "1" "February 2022" "" ""
|
.TH "BUNDLE\-OPEN" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-open\fR \- Opens the source directory for a gem in your bundle
|
\fBbundle\-open\fR \- Opens the source directory for a gem in your bundle
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-OUTDATED" "1" "February 2022" "" ""
|
.TH "BUNDLE\-OUTDATED" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-outdated\fR \- List installed gems with newer versions available
|
\fBbundle\-outdated\fR \- List installed gems with newer versions available
|
||||||
.
|
.
|
||||||
.SH "SYNOPSIS"
|
.SH "SYNOPSIS"
|
||||||
\fBbundle outdated\fR [GEM] [\-\-local] [\-\-pre] [\-\-source] [\-\-strict] [\-\-parseable | \-\-porcelain] [\-\-group=GROUP] [\-\-groups] [\-\-update\-strict] [\-\-patch|\-\-minor|\-\-major] [\-\-filter\-major] [\-\-filter\-minor] [\-\-filter\-patch] [\-\-only\-explicit]
|
\fBbundle outdated\fR [GEM] [\-\-local] [\-\-pre] [\-\-source] [\-\-strict] [\-\-parseable | \-\-porcelain] [\-\-group=GROUP] [\-\-groups] [\-\-patch|\-\-minor|\-\-major] [\-\-filter\-major] [\-\-filter\-minor] [\-\-filter\-patch] [\-\-only\-explicit]
|
||||||
.
|
.
|
||||||
.SH "DESCRIPTION"
|
.SH "DESCRIPTION"
|
||||||
Outdated lists the names and versions of gems that have a newer version available in the given source\. Calling outdated with [GEM [GEM]] will only check for newer versions of the given gems\. Prerelease gems are ignored by default\. If your gems are up to date, Bundler will exit with a status of 0\. Otherwise, it will exit 1\.
|
Outdated lists the names and versions of gems that have a newer version available in the given source\. Calling outdated with [GEM [GEM]] will only check for newer versions of the given gems\. Prerelease gems are ignored by default\. If your gems are up to date, Bundler will exit with a status of 0\. Otherwise, it will exit 1\.
|
||||||
|
@ -28,7 +28,7 @@ Check against a specific source\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-strict\fR
|
\fB\-\-strict\fR
|
||||||
Only list newer versions allowed by your Gemfile requirements\.
|
Only list newer versions allowed by your Gemfile requirements, also respecting conservative update flags (\-\-patch, \-\-minor, \-\-major)\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-parseable\fR, \fB\-\-porcelain\fR
|
\fB\-\-parseable\fR, \fB\-\-porcelain\fR
|
||||||
|
@ -43,10 +43,6 @@ List gems from a specific group\.
|
||||||
List gems organized by groups\.
|
List gems organized by groups\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-update\-strict\fR
|
|
||||||
Strict conservative resolution, do not allow any gem to be updated past latest \-\-patch | \-\-minor| \-\-major\.
|
|
||||||
.
|
|
||||||
.TP
|
|
||||||
\fB\-\-minor\fR
|
\fB\-\-minor\fR
|
||||||
Prefer updating only to next minor version\.
|
Prefer updating only to next minor version\.
|
||||||
.
|
.
|
||||||
|
@ -77,9 +73,6 @@ Only list gems specified in your Gemfile, not their dependencies\.
|
||||||
.SH "PATCH LEVEL OPTIONS"
|
.SH "PATCH LEVEL OPTIONS"
|
||||||
See bundle update(1) \fIbundle\-update\.1\.html\fR for details\.
|
See bundle update(1) \fIbundle\-update\.1\.html\fR for details\.
|
||||||
.
|
.
|
||||||
.P
|
|
||||||
One difference between the patch level options in \fBbundle update\fR and here is the \fB\-\-strict\fR option\. \fB\-\-strict\fR was already an option on outdated before the patch level options were added\. \fB\-\-strict\fR wasn\'t altered, and the \fB\-\-update\-strict\fR option on \fBoutdated\fR reflects what \fB\-\-strict\fR does on \fBbundle update\fR\.
|
|
||||||
.
|
|
||||||
.SH "FILTERING OUTPUT"
|
.SH "FILTERING OUTPUT"
|
||||||
The 3 filtering options do not affect the resolution of versions, merely what versions are shown in the output\.
|
The 3 filtering options do not affect the resolution of versions, merely what versions are shown in the output\.
|
||||||
.
|
.
|
||||||
|
|
|
@ -10,7 +10,6 @@ bundle-outdated(1) -- List installed gems with newer versions available
|
||||||
[--parseable | --porcelain]
|
[--parseable | --porcelain]
|
||||||
[--group=GROUP]
|
[--group=GROUP]
|
||||||
[--groups]
|
[--groups]
|
||||||
[--update-strict]
|
|
||||||
[--patch|--minor|--major]
|
[--patch|--minor|--major]
|
||||||
[--filter-major]
|
[--filter-major]
|
||||||
[--filter-minor]
|
[--filter-minor]
|
||||||
|
@ -36,7 +35,7 @@ are up to date, Bundler will exit with a status of 0. Otherwise, it will exit 1.
|
||||||
Check against a specific source.
|
Check against a specific source.
|
||||||
|
|
||||||
* `--strict`:
|
* `--strict`:
|
||||||
Only list newer versions allowed by your Gemfile requirements.
|
Only list newer versions allowed by your Gemfile requirements, also respecting conservative update flags (--patch, --minor, --major).
|
||||||
|
|
||||||
* `--parseable`, `--porcelain`:
|
* `--parseable`, `--porcelain`:
|
||||||
Use minimal formatting for more parseable output.
|
Use minimal formatting for more parseable output.
|
||||||
|
@ -47,9 +46,6 @@ are up to date, Bundler will exit with a status of 0. Otherwise, it will exit 1.
|
||||||
* `--groups`:
|
* `--groups`:
|
||||||
List gems organized by groups.
|
List gems organized by groups.
|
||||||
|
|
||||||
* `--update-strict`:
|
|
||||||
Strict conservative resolution, do not allow any gem to be updated past latest --patch | --minor| --major.
|
|
||||||
|
|
||||||
* `--minor`:
|
* `--minor`:
|
||||||
Prefer updating only to next minor version.
|
Prefer updating only to next minor version.
|
||||||
|
|
||||||
|
@ -75,11 +71,6 @@ are up to date, Bundler will exit with a status of 0. Otherwise, it will exit 1.
|
||||||
|
|
||||||
See [bundle update(1)](bundle-update.1.html) for details.
|
See [bundle update(1)](bundle-update.1.html) for details.
|
||||||
|
|
||||||
One difference between the patch level options in `bundle update` and here is the `--strict` option.
|
|
||||||
`--strict` was already an option on outdated before the patch level options were added. `--strict`
|
|
||||||
wasn't altered, and the `--update-strict` option on `outdated` reflects what `--strict` does on
|
|
||||||
`bundle update`.
|
|
||||||
|
|
||||||
## FILTERING OUTPUT
|
## FILTERING OUTPUT
|
||||||
|
|
||||||
The 3 filtering options do not affect the resolution of versions, merely what versions are shown
|
The 3 filtering options do not affect the resolution of versions, merely what versions are shown
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-PLATFORM" "1" "February 2022" "" ""
|
.TH "BUNDLE\-PLATFORM" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-platform\fR \- Displays platform compatibility information
|
\fBbundle\-platform\fR \- Displays platform compatibility information
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-PRISTINE" "1" "February 2022" "" ""
|
.TH "BUNDLE\-PRISTINE" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-pristine\fR \- Restores installed gems to their pristine condition
|
\fBbundle\-pristine\fR \- Restores installed gems to their pristine condition
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-REMOVE" "1" "February 2022" "" ""
|
.TH "BUNDLE\-REMOVE" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-remove\fR \- Removes gems from the Gemfile
|
\fBbundle\-remove\fR \- Removes gems from the Gemfile
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-SHOW" "1" "February 2022" "" ""
|
.TH "BUNDLE\-SHOW" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-show\fR \- Shows all the gems in your bundle, or the path to a gem
|
\fBbundle\-show\fR \- Shows all the gems in your bundle, or the path to a gem
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-UPDATE" "1" "February 2022" "" ""
|
.TH "BUNDLE\-UPDATE" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-update\fR \- Update your gems to the latest available versions
|
\fBbundle\-update\fR \- Update your gems to the latest available versions
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE\-VIZ" "1" "February 2022" "" ""
|
.TH "BUNDLE\-VIZ" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\-viz\fR \- Generates a visual dependency graph for your Gemfile
|
\fBbundle\-viz\fR \- Generates a visual dependency graph for your Gemfile
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BUNDLE" "1" "February 2022" "" ""
|
.TH "BUNDLE" "1" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbundle\fR \- Ruby Dependency Management
|
\fBbundle\fR \- Ruby Dependency Management
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "GEMFILE" "5" "February 2022" "" ""
|
.TH "GEMFILE" "5" "March 2022" "" ""
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBGemfile\fR \- A format for describing gem dependencies for Ruby programs
|
\fBGemfile\fR \- A format for describing gem dependencies for Ruby programs
|
||||||
|
|
|
@ -570,8 +570,7 @@ RSpec.describe "bundle outdated" do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
filter_strict_option = Bundler.feature_flag.bundler_2_mode? ? :"filter-strict" : :strict
|
describe "with --filter-strict option" do
|
||||||
describe "with --#{filter_strict_option} option" do
|
|
||||||
before do
|
before do
|
||||||
build_repo2 do
|
build_repo2 do
|
||||||
build_git "foo", :path => lib_path("foo")
|
build_git "foo", :path => lib_path("foo")
|
||||||
|
@ -595,7 +594,7 @@ RSpec.describe "bundle outdated" do
|
||||||
build_gem "weakling", "0.0.5"
|
build_gem "weakling", "0.0.5"
|
||||||
end
|
end
|
||||||
|
|
||||||
bundle :outdated, filter_strict_option => true, :raise_on_error => false
|
bundle :outdated, :"filter-strict" => true, :raise_on_error => false
|
||||||
|
|
||||||
expected_output = <<~TABLE.strip
|
expected_output = <<~TABLE.strip
|
||||||
Gem Current Latest Requested Groups
|
Gem Current Latest Requested Groups
|
||||||
|
@ -611,7 +610,7 @@ RSpec.describe "bundle outdated" do
|
||||||
gem "activesupport", platforms: [:ruby_22]
|
gem "activesupport", platforms: [:ruby_22]
|
||||||
G
|
G
|
||||||
|
|
||||||
bundle :outdated, filter_strict_option => true
|
bundle :outdated, :"filter-strict" => true
|
||||||
|
|
||||||
expect(out).to end_with("Bundle up to date!")
|
expect(out).to end_with("Bundle up to date!")
|
||||||
end
|
end
|
||||||
|
@ -622,7 +621,7 @@ RSpec.describe "bundle outdated" do
|
||||||
gem "rack_middleware", "1.0"
|
gem "rack_middleware", "1.0"
|
||||||
G
|
G
|
||||||
|
|
||||||
bundle :outdated, filter_strict_option => true
|
bundle :outdated, :"filter-strict" => true
|
||||||
|
|
||||||
expect(out).to end_with("Bundle up to date!")
|
expect(out).to end_with("Bundle up to date!")
|
||||||
end
|
end
|
||||||
|
@ -640,7 +639,7 @@ RSpec.describe "bundle outdated" do
|
||||||
build_gem "weakling", "0.0.5"
|
build_gem "weakling", "0.0.5"
|
||||||
end
|
end
|
||||||
|
|
||||||
bundle :outdated, filter_strict_option => true, "filter-patch" => true, :raise_on_error => false
|
bundle :outdated, :"filter-strict" => true, "filter-patch" => true, :raise_on_error => false
|
||||||
|
|
||||||
expected_output = <<~TABLE.strip
|
expected_output = <<~TABLE.strip
|
||||||
Gem Current Latest Requested Groups
|
Gem Current Latest Requested Groups
|
||||||
|
@ -662,7 +661,7 @@ RSpec.describe "bundle outdated" do
|
||||||
build_gem "weakling", "0.1.5"
|
build_gem "weakling", "0.1.5"
|
||||||
end
|
end
|
||||||
|
|
||||||
bundle :outdated, filter_strict_option => true, "filter-minor" => true, :raise_on_error => false
|
bundle :outdated, :"filter-strict" => true, "filter-minor" => true, :raise_on_error => false
|
||||||
|
|
||||||
expected_output = <<~TABLE.strip
|
expected_output = <<~TABLE.strip
|
||||||
Gem Current Latest Requested Groups
|
Gem Current Latest Requested Groups
|
||||||
|
@ -684,7 +683,7 @@ RSpec.describe "bundle outdated" do
|
||||||
build_gem "weakling", "1.1.5"
|
build_gem "weakling", "1.1.5"
|
||||||
end
|
end
|
||||||
|
|
||||||
bundle :outdated, filter_strict_option => true, "filter-major" => true, :raise_on_error => false
|
bundle :outdated, :"filter-strict" => true, "filter-major" => true, :raise_on_error => false
|
||||||
|
|
||||||
expected_output = <<~TABLE.strip
|
expected_output = <<~TABLE.strip
|
||||||
Gem Current Latest Requested Groups
|
Gem Current Latest Requested Groups
|
||||||
|
@ -1099,7 +1098,7 @@ RSpec.describe "bundle outdated" do
|
||||||
end
|
end
|
||||||
|
|
||||||
context "conservative updates" do
|
context "conservative updates" do
|
||||||
context "without update-strict" do
|
context "without --strict" do
|
||||||
before do
|
before do
|
||||||
build_repo4 do
|
build_repo4 do
|
||||||
build_gem "patch", %w[1.0.0 1.0.1]
|
build_gem "patch", %w[1.0.0 1.0.1]
|
||||||
|
@ -1165,7 +1164,7 @@ RSpec.describe "bundle outdated" do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
context "with update-strict" do
|
context "with --strict" do
|
||||||
before do
|
before do
|
||||||
build_repo4 do
|
build_repo4 do
|
||||||
build_gem "foo", %w[1.4.3 1.4.4] do |s|
|
build_gem "foo", %w[1.4.3 1.4.4] do |s|
|
||||||
|
@ -1198,8 +1197,8 @@ RSpec.describe "bundle outdated" do
|
||||||
G
|
G
|
||||||
end
|
end
|
||||||
|
|
||||||
it "shows gems with update-strict updating to patch and filtering to patch" do
|
it "shows gems with --strict updating to patch and filtering to patch" do
|
||||||
bundle "outdated --patch --update-strict --filter-patch", :raise_on_error => false
|
bundle "outdated --patch --strict --filter-patch", :raise_on_error => false
|
||||||
|
|
||||||
expected_output = <<~TABLE.strip
|
expected_output = <<~TABLE.strip
|
||||||
Gem Current Latest Requested Groups
|
Gem Current Latest Requested Groups
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue