Fix bundle show --verbose
and recommend it as an alternative to bundle show --outdated
#8915
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What was the end-user or developer problem that led to this PR?
In #8913, I finally understood an old plan to remove
bundle show
.bundle show
is a bit confusing and we have more specific commands to do what it does. When passed a specific gembundle show <gem-name>
, we havebundle info
as a better alternative. When not passed a specific gem, we havebundle list
as a better alternative.We could eventually deprecate
bundle show
, but we should make sure all functionality has some replacement. However,bundle show --outdated
does not have abundle list
equivalent.What is your fix for the problem, implemented in this PR?
This PR copies
bundle show --outdated
implementation tobundle list --verbose
and recommends that as an alternative in the deprecation message.Make sure the following tasks are checked