I've just pushed a private pod to my.domain.com:apps/MyPrivatePod.git
. I'd like to use both this private pod and other public pods in my project
platform :ios, '8.0'
target 'Testing' do
pod 'AFNetworking', '2.6.0 ' // This is supposed to be a public Pod
pod 'MyPrivatePod', '~> 1.1' // This is the private pod I talked about
end
How can I achieve this?