." generated with Ronn-NG/v0.10.1 ." github.com/apjanke/ronn-ng/tree/0.10.1 .TH “BUNDLE-OUTDATED” “1” “July 2025” “” .SH “NAME” fBbundle-outdatedfR - List installed gems with newer versions available .SH “SYNOPSIS” fBbundle outdatedfR [GEM] [--local] [--pre] [--source] [--filter-strict | --strict] [--update-strict] [--parseable | --porcelain] [--group=GROUP] [--groups] [--patch|--minor|--major] [--filter-major] [--filter-minor] [--filter-patch] [--only-explicit] .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. .SH “OPTIONS” .TP fB--localfR Do not attempt to fetch gems remotely and use the gem cache instead. .TP fB--prefR Check for newer pre-release gems. .TP fB--source=<list>fR Check against a specific source. .TP fB--filter-strictfR, fB--strictfR Only list newer versions allowed by your Gemfile requirements, also respecting conservative update flags (--patch, --minor, --major). .TP fB--update-strictfR Strict conservative resolution, do not allow any gem to be updated past latest --patch | --minor | --major. .TP fB--parseablefR, fB--porcelainfR Use minimal formatting for more parseable output. .TP fB--group=GROUPfR List gems from a specific group. .TP fB--groupsfR List gems organized by groups. .TP fB--minorfR Prefer updating only to next minor version. .TP fB--majorfR Prefer updating to next major version (default). .TP fB--patchfR Prefer updating only to next patch version. .TP fB--filter-majorfR Only list major newer versions. .TP fB--filter-minorfR Only list minor newer versions. .TP fB--filter-patchfR Only list patch newer versions. .TP fB--only-explicitfR Only list gems specified in your Gemfile, not their dependencies. .SH “PATCH LEVEL OPTIONS” See bundle update(1) fIbundle-update.1.htmlfR for details. .SH “FILTERING OUTPUT” The 3 filtering options do not affect the resolution of versions, merely what versions are shown in the output. .P If the regular output shows the following: .IP “” 4 .nf

.fi .IP “” 0 .P fB--filter-majorfR would only show: .IP “” 4 .nf

.fi .IP “” 0 .P fB--filter-minorfR would only show: .IP “” 4 .nf

.fi .IP “” 0 .P fB--filter-patchfR would only show: .IP “” 4 .nf

.fi .IP “” 0 .P Filter options can be combined. fB--filter-minorfR and fB--filter-patchfR would show: .IP “” 4 .nf

.fi .IP “” 0 .P Combining all three fBfilterfR options would be the same result as providing none of them.