I am making a cocoapods. I am using pod lib create MyLibrary
to create a new cocoapods. After it\'s done, I added two files into MyLibrary/Pod/Classes/. And I commi
I had the same problem and I have been able to solve it following this steps:
Commands:
$> sudo gem install cocoapods --pre
$> rm Podfile.lock
$> pod install
Maybe some are not necessary, but it worked for me (I think that the most important is to remove the Podfile.lock). I hope you can solve it too.