Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List installed cocoapods and versions

Tags:

cocoapods

Does the pod command support an option to list the installed CococaPods in a given project? pod list appears to display a list of all published pods. I've looked around in the documentation but can't find a way of doing this.

like image 536
brandonscript Avatar asked Apr 21 '15 21:04

brandonscript


People also ask

What version is my CocoaPods?

1.11. 0. beta. 2 - August 11, 2021 (286 KB)

What version of Ruby does CocoaPods use?

Required Ruby Version: >= 2.0.


2 Answers

EDIT: As stated in @DougAmos' answer you should check your Podfile.lock to see this information using cat Podfile.lock

This doesn't currently exist in CocoaPods. Personally I would just do a cat Podfile to learn about what the project was including. I would suggest you create an issue (or even better a pull request) on the main repository about this!

like image 103
Keith Smiley Avatar answered Sep 21 '22 12:09

Keith Smiley


From the root directory of your project:

cat Podfile.lock 

(I know this has been mentioned in a comment, but this should be an answer in it's own right)

like image 37
Doug Amos Avatar answered Sep 20 '22 12:09

Doug Amos