How to find out the version of installed cocoa pods?
I'm not asking about the version of the cocoa pods gem, but the version of the pods themselves. Ideally it would say "pod GreatViewController is installed in version 1.2.3, new version available: 1.2.6".
Is there something like that?
EDIT
Based on your clarification you're looking for pod outdated
. You can see more information about this with pod outdated --help
Original answer before question was edited
The command you want is pod --version
In the future you should use pod --help
to find answers such as this. You can also use pod COMMAND --help
to get help for specific commands.