Added “Update Pods in Podfile” menu item
@brennanMKE Oh, maybe we have a bit of a naming issue. "Install/Update CocoaPods" is supposed to install/update the cocoapods gem, while "Update Pods in Podfile" (pod update) is for installing the latest versions of all pods in the Podfile not locked to a particular version. There is currently no "Update Pods in Podfile" command in master.
@kattrali That makes sense. I will make sure that I pull the latest on master to my fork and put it on a branch for this update. I can organize the various commands.
Here are the current commands.
- Integrate Pods (
pod install) - Check for Outdated Pods (
pod outdated) - Created/Edit Podfile
- Create/Edit Podspec
- Install/Update CocoaPods (
gem install cocoapods) - Install Docs during Integration
I am not clear on the difference between pod install and pod update since I run those interchangeably and do not know the difference. It would help to make the difference clear.
@brennanMKE pod update ignores the versions specified in the Podfile.lock and rewrites the file with the latest versions of pods without a specified version in the Podfile
+1
pod update and pod install have different behaviors:
https://github.com/CocoaPods/CocoaPods/issues/2229
Thanks for a great plugin!