ios - Could not add private pod as a dependency in other pod? -


i working on private pod, , when tried add dependency private pod getting error while running "pod update":

[!] error installing eemypod [!] attempt read non existent folder `/volumes/development/work/projects/pods/eagle-eye-ios-pod/example/pods/eemypod`. 

i have no clue why happening!

but, while running:

pod spec lint 

i getting this:

attempt read non existent folder `/private/tmp/cocoapods/lint/pods/eemypod` 

which think might clue.

this podfile:

pod::spec.new |s|   s.name             = "eemypod"   s.version          = "0.1.0"   s.summary          = "a short description of eemypod."   s.description      = <<-desc                        optional longer description of eemypod                         * markdown format.                        * don't worry indent, 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 

this sounds cocoapods failed download dependency while linting specification. if run command again --verbose expose underlying error git while cloning repository. might tag missing dependency.

cocoapods 0.35.0.rc2 changed provide better error message (https://github.com/cocoapods/cocoapods/issues/2667).


Comments

Popular posts from this blog

c++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

javascript - angular ng-required radio button not toggling required off in firefox 33, OK in chrome -

xcode - Swift Playground - Files are not readable -