2014-11-11 1 views
0

나는 개인 포드 일하고, 나는 내가 "포드 업데이트"를 실행하는 동안이 오류가 무엇입니까 다른 개인 포드에 종속성으로 추가하려고 할 때 :다른 창에서 개인 창을 종속 항목으로 추가 할 수 없습니까?

[!] 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` 

합니다. 이 사양을 linting 동안 CocoaPods 종속성을 다운로드하는 데 실패 가능성이 높다 소리

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 => "[email protected]: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 
+0

Yup! 이것은 코코아 용기에 관한 것입니다. 나는 당신을 못 봤어? – kidsid49

+0

그래, 대체 뭐야? – kidsid49

+0

podfile을 게시하고 싶을 수도 있습니다. – Tim

답변

1

:

이 내 Podfile입니다. --verbose으로 명령을 다시 실행하면 저장소를 복제하는 동안 기본 오류가 git에서 노출됩니다. 태그가 종속성에 대해 누락되었을 수 있습니다.

더 나은 오류 메시지 (https://github.com/CocoaPods/CocoaPods/issues/2667)를 제공하기 위해 CocoaPods 0.35.0.rc2가 변경되었습니다.

+2

자세한 내용은 사용하고 있습니다. -> $/usr/bin/git clone [email protected] : Codigami/EEMyPod.git /private/tmp/CocoaPods/Lint/Pods/EEMyPod - 단일 브랜치 - 깊이 1 - 브랜치 0.1.0 '/ 개인용으로 복제/tmp/CocoaPods/Lint/Pods/EEMyPod '... 경고 : 복제 할 원격 지점 0.1.0을 찾을 수 없습니다. 치명적인 : 원격 지점 0.1.0 업스트림 원점에서 찾을 수 없습니다. – kidsid49

+0

분기로 버전 번호를 고려하는 이유는 무엇입니까? – kidsid49

+2

은 git의 내부 용어입니다. 커밋, 태그 및 분기 간에는 차이점이 없습니다. 태그를 밀어 넣지 않았을 수도 있습니다. – orta

관련 문제