Baskets from private repo not found CocoaPods

I cannot use the pod from the cocoapods private repository.

When I try to add my module using version 0.37.1 I get the following error:

[!] Unable to find a specification for ...

      

My cocoapods config uses 2 remotes:

$ pod repo list 

bootstragram-public-pod-repo
- Type: git (master)
- URL:  https://github.com/Bootstragram/bootstragram-public-pod-repo.git
- Path: /Users/mick/.cocoapods/repos/bootstragram-public-pod-repo

master
- Type: git (master)
- URL:  https://github.com/CocoaPods/Specs.git
- Path: /Users/mick/.cocoapods/repos/master

2 repos

      

And when I use pod install --verbose

it seems that only the repo is checked out master

, not the personal one:

  Preparing
    Migrating to CocoaPods 0.36

Analyzing dependencies

Updating spec repositories
Updating spec repo `master`
  ...

Inspecting targets to integrate
  Using `ARCHS` setting to build architectures of target `Pods`: (``)

...

Resolving dependencies of `Podfile`
Finished resolution (0 steps) (Took 0.455585 seconds) (2015-05-13 15:09:23 +0200)
[!] Unable to find a specification for `BSGUtilities`

      

I'm sorry it wasn't Updating spec repo bootstragram-public-pod-repo

:)

Any idea what would go wrong?

+3


source to share


1 answer


Does your subfile include all of your sources ... a link to another Specs repo?

From Artsy / Eigen



  source 'https://github.com/artsy/Specs.git'
  source 'https://github.com/CocoaPods/Specs.git'

      

+7


source







All Articles