Some weeks ago I've created an interactive transition in Objective-C.
I've created a repository on GitHub and I've hosted a project which contains the transition classes and the example code to handle it.
My routine is the following:
- Make changes locally in Xcode
- Commit them
- Push them to the remote repository on GitHub
- Review Pull request
Now many user ask me to integrate the transition with CocoaPods.
Personally I love CocoaPods and I integrate it in all my project, but I don't have made any cocoapod yet.
I've read the official guide and tutorial like this one, but these are about project from scratch.
I'm wondering how to integrate the cocoapods template (Example + pod) with my existing project on GitHub (and locally).
I know there is the command pod lib create COCOAPOD_NAME , but it create a template (Example + pod) from the scratch that it is not sync with the repository on GitHub.
I''ve also read this Stackoverflow answer, but this is not clear to me.