Our pods we use for Dephyned Mobile Development
If you want to make any changes to any of the Pods you must follow these steps.
- Make whatever changes you want to the Pod
- Update the s.version in the podspec file to whatever you want the new version to be
- Add all the files to git and commit
- Set the current tag on git to whatever the version is you just updated to. Ex:
git tag '1.0.0'
- Push the changes to git with the flag tag
git push --tags
- Push the changes to the pod repo
// You should be executing this in the root of the pod project
pod repo push dephyned-specs name-of-podspec-file.podspec --allow-warnings
And you're done