All Questions
4 questions
0
votes
3
answers
888
views
ios Unable to install dependency using Pods
I am trying to install AFNetworking using Pods. I've created a pod file and when I run pod install I get :
Unable to add a source with url
https://github.com/CocoaPods/Specs.git named master-1. ...
47
votes
2
answers
29k
views
CocoaPods: point to a branch in pod spec
I'm trying to install code from a repository's branch on a pod spec, and based on the documentation, this should work:
s.dependency 'repository_name',
:git => 'https://github.com/account_name/...
0
votes
1
answer
106
views
How do I download all submodules of a github project in cocoa?
I am not an experienced user of git or github.
I am trying to use this module: https://github.com/blommegard/APNS-Pusher
I download it and issue the commands
pod install
and it shows
Analyzing ...
3
votes
1
answer
1k
views
How to test my podspec file without having to commit my changes all the time?
I am writing a library as a pod (used pod lib create) and I am trying to figure out how to structure my files since I have a mix of static libraries, non-arc files and arc files. Thus, I am making ...