1

我正在开发一个私有 pod,当我尝试将其作为依赖项添加到另一个私有 pod 时,我在运行“pod 更新”时收到此错误:

[!] Error installing EEMyPod
[!] Attempt to read non existent folder `/Volumes/Development/Work/Projects/Pods/eagle-eye-ios-pod/Example/Pods/EEMyPod`.

我不知道为什么会这样!

但是,在运行时:

pod spec lint

我得到这个:

Attempt to read non existent folder `/private/tmp/CocoaPods/Lint/Pods/EEMyPod`

我认为这可能是一个线索。

这是我的 Podfile:

Pod::Spec.new do |s|
  s.name             = "EEMypod"
  s.version          = "0.1.0"
  s.summary          = "A short description of EEMypod."
  s.description      = <<-DESC
                       An optional longer description of EEMyPod

                       * Markdown format.
                       * Don't worry about the indent, we strip it!
                       DESC
  s.homepage         = "https://github.com/Codigami/EEMyPod"
  # s.screenshots     = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
  s.license          = 'MIT'
  s.author           = { "Siddarth Chaturvedi" => "Email ID" }
  s.source           = { :git => "git@github.com:Codigami/EEMyPod.git", :tag => "0.1.0" }
  # s.social_media_url = 'https://twitter.com/kidsid49'

  s.platform     = :ios, '7.0'
  s.requires_arc = true

  s.source_files = 'Pod/Classes/*.{h,m}'
  s.resource_bundles = {
    'AAFNetworking' => ['Pod/Assets/*.png']
  }

  # s.public_header_files = 'Pod/Classes/**/*.h'
  # s.frameworks = 'UIKit', 'MapKit'
  # s.dependency 'AFNetworking', '~> 2.3'

end
4

1 回答 1

2

这听起来很可能是 CocoaPods 在 linting 规范时未能下载依赖项。如果您再次运行该命令,--verbose它将在克隆存储库时暴露来自 git 的潜在错误。可能是依赖项缺少标记。

CocoaPods 0.35.0.rc2 已更改以提供更好的错误消息 ( https://github.com/CocoaPods/CocoaPods/issues/2667 )。

于 2014-11-11T14:01:50.160 回答