I am trying to use private repositories to break up a larger application. I have followed the guides at:
The reason is that the pod spec linter is only checking the master specs, so it can't find your private one.
You'll need to use the --sources option, like this:
pod spec lint --sources='git@our-private-spec-repo:iOS/Specs.git,https://github.com/CocoaPods/Specs'
Two things two note:
By running pod spec lint --help you can read more about this option:
--sources=https://github.com/artsy/Specs The sources from which to pull
dependant pods (defaults to
https://github.com/CocoaPods/Specs.git).
Multiple sources must be
comma-delimited.
More on this here and here