Cocoapods Podspec Source HTTP Authentication Support
问题 I am looking into setting up a private repo that allows distributing binary .framework files (so no source code) via Cocoapods. The actual repo will be hosted on a Git server, just like the Cocoapods page suggests and the actual .framework files will be hosted on a different server that would allow accessing the .framework files via HTTPs. Let's say I add this in the .podspec file: spec.source = { :http => 'https://myhostserver.com/Releases/v1.0.0/MyLibrary.framework.zip' } From reading the