在 pod install 上创建新的 Cocoapod `Unable to find a specification`
Posted
技术标签:
【中文标题】在 pod install 上创建新的 Cocoapod `Unable to find a specification`【英文标题】:Creating new Cocoapod `Unable to find a specification` on pod install 【发布时间】:2017-09-10 00:20:55 【问题描述】:我已经阅读了制作新 pod 的 Cocoapod 指南。
repo 存在于此处:https://github.com/kkendall33/QuickInstantiating。
QuickInstantiation
pod 规范如下所示:
但是当我转到另一个项目并将QuickInstantiating
添加到 Podfile 时:
然后运行pod install
。我明白了:
我刚刚使用不同的 pod 测试了 pod install
,它运行良好。这让我相信我做错了什么。
【问题讨论】:
【参考方案1】:必须先推送 pod,然后才能被版本引用。对于测试,您可以使用相同的路径语法 -
pod 'QuickInstantiating', :path => 'relative/path'
就像你在https://github.com/kkendall33/QuickInstantiating/blob/master/Example/Podfile#L4使用的一样
否则,如果您确实想在将 pod 推送到主干之前测试 git 存储库,则可以将 pod 推送到私有 Specs 存储库。说明在https://guides.cocoapods.org/making/private-cocoapods。
【讨论】:
以上是关于在 pod install 上创建新的 Cocoapod `Unable to find a specification`的主要内容,如果未能解决你的问题,请参考以下文章