objective c - How does one make a podspec honor the "head:" argument? -
when try specify want pull latest version of pod, according cocoapods official docs, list in podfile this:
pod 'reactivecocoa', :head unfortunately, when this, i'm noticing pods pull version thats listed in podspec, not latest commit desired. declarations podspec need head: work intended?
the :head option deprecated. use :git instead:
pod 'afnetworking', :git => 'https://github.com/afnetworking/afnetworking.git'
Comments
Post a Comment