2015-03-13 88 views
3

我们有私人椰子树。当我键入pod repoCocoapods(私人)无法找到规格

company-private 
- Type: git (origin) 
- URL: ssh://[email protected]//path/git/PrivateCocoapods 
- Path: /Users/Username/.cocoapods/repos/company-private 

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

我已经进入~/.cocoapods/repos

$ ls 
company-private master 
$ cd company-private 
$ ls 
Specs 
$ cd Specs: 
$ ls 
MyProject 
$ cd MyProject: 
$ ls 
0.0.19 0.0.2 0.0.5 
$ cd /0.0.5: 
$ ls 
MyProject.podspec 

在另一个项目中.podfile我想:

pod 'MyProject', '0.0.5' 

而且pod installpod update后,我得到:

$ pod install 
Analyzing dependencies 
[!] Unable to find a specification for `MyProject (= 0.0.5)` 

有没有人知道为什么它不起作用..?

---编辑---

我可以简单地输入pod install重现它的任何计算机上。它以前没有像这样工作。我使用pod repo push company-private MyProject.podspec推送到服务器。它在一周前工作。今天我用同样的方式推出新版本,但是用--allow-warnings标志。当我试图碰撞版本0.0.19它不是已经工作。我克隆了回购协议,并在其中添加了Spec文件夹(因此您现在可以在ls上看到它),但它仍然无法正常工作。

- EDIT2 -

的详细输出:

$ pod install --verbose 
    Preparing 

Analyzing dependencies 

Updating spec repositories 
    $ /usr/local/bin/git rev-parse >/dev/null 2>&1 
    $ /usr/local/bin/git rev-parse >/dev/null 2>&1 
Updating spec repo `master` 
    $ /usr/local/bin/git pull --ff-only 
    From https://github.com/CocoaPods/Specs 
    4715d39..f21e61b master  -> origin/master 
    Updating 4715d39..f21e61b 
    Fast-forward 
    Specs/ISO8601-re2c/0.3.1/ISO8601-re2c.podspec.json | 24 ++++++ 
    Specs/Mobily/2.0.77/Mobily.podspec.json   | 91 ++++++++++++++++++++++ 
    Specs/NJISO8601/0.2.2/NJISO8601.podspec.json  | 22 ++++++ 
    3 files changed, 137 insertions(+) 
    create mode 100644 Specs/ISO8601-re2c/0.3.1/ISO8601-re2c.podspec.json 
    create mode 100644 Specs/Mobily/2.0.77/Mobily.podspec.json 
    create mode 100644 Specs/NJISO8601/0.2.2/NJISO8601.podspec.json 

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

Finding Podfile changes 
    - MyProject 

Resolving dependencies of `Podfile` 
Finished resolution (0 steps) (Took 0.006555 seconds) (2015-03-13 15:06:41 +0100) 
[!] Unable to find a specification for `MyProject (= 0.0.5)` 
+0

什么版本你正在使用椰子树吗?这发生在我尝试'0.36.0'测试版本时 - 它需要在podfile中明确指定源存储库 – 2015-03-13 14:19:23

+0

@JakubVano是的。我刚更新到0.36.0。 Atm我在他们的github上报告了这个问题。因为它不应该这样工作? – Vive 2015-03-13 14:20:13

+0

我非常确定我已经阅读过某个地方,这是预期的行为 - 它必须与一些现有的豆荚不与新建筑兼容到框架功能 – 2015-03-13 14:22:58

回答

10

的CocoaPods版本0.36.0要求你在你的Podfile明确指定源代码库,如:

source 'https://github.com/CocoaPods/Specs.git' 
+0

测试0.37.0。显式源仍然是必需的。 – MasterBeta 2015-05-05 05:57:01