I am trying to create my first pod and is following this tutorial: http://www.sitepoint.com/creating-cocoapods/
But when I do:
pod spec lint GLLingoM
Sometimes the following command line will create a problem, if you are copy pasting into terminal.
Example
//incorrect
git tag ‘0.1.0’
//Will create a tag ‘0.1.0’
//correct
git tag '0.1.0'
//will create a tag 0.1.0
So better to type the single quotes, it may prevent this kind of unexpected issues. And go check your repo whether these tags are created properly.