Podspec validation fails when dependency addsCocoapods No such file to load ErrorCocoaPods setup taking foreverCocoa Pods Error message after attempting to install a new podpod install fails with error: error:1006706B:elliptic curve routinesCocoapods Setup in OSX El CapitanYou cannot run CocoaPods as root (Ionic) iOSCocoapods: cannot find spec for pod even though it seems to existcocoapods installation error in xcodeAfter “pod try Crashlytics”, github asks for login and password, but fails every timeWhy would I receive a Float to String comparison error when linting a CocoaPod

Spectrum vs eigenvalues

Why hasn't the U.S. government paid war reparations to any country it attacked?

Why does the trade federation become so alarmed upon learning the ambassadors are Jedi Knights?

I quit, and boss offered me 3 month "grace period" where I could still come back

Can I intentionally omit previous work experience or pretend it doesn't exist when applying for jobs?

Password maker in C#

What does `[$'rn']` mean?

Are local nested functions possible in elisp?

Cubic programming and beyond?

Did any of the founding fathers anticipate Lysander Spooner's criticism of the constitution?

How might the United Kingdom become a republic?

wavelength of seismic wave with a gaussian source

Cutting machine can't read vectors with strokes

A DVR algebra with weird automorphisms

Robbers: The Hidden OEIS Substring

How did the hit man miss?

Draw 3D Cubes around centre

Is killing off one of my queer characters homophobic?

Is a public company able to check out who owns its shares in very detailed format?

Why did my rum cake turn black?

Is this floating-point optimization allowed?

Why does Hellboy file down his horns?

Is it rude to tell recruiters I would only change jobs for a better salary?

Redirecting of hostname to full qualified domain name with HTTPS fails



Podspec validation fails when dependency adds


Cocoapods No such file to load ErrorCocoaPods setup taking foreverCocoa Pods Error message after attempting to install a new podpod install fails with error: error:1006706B:elliptic curve routinesCocoapods Setup in OSX El CapitanYou cannot run CocoaPods as root (Ionic) iOSCocoapods: cannot find spec for pod even though it seems to existcocoapods installation error in xcodeAfter “pod try Crashlytics”, github asks for login and password, but fails every timeWhy would I receive a Float to String comparison error when linting a CocoaPod






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have created one private pod and need to create another pod by using previous pod. Added that previous pod as dependency inside the podspec file of second pod. This is my second pod' podspec file.



s.name = "MySecondPod"
s.version = "0.1.0"
s.summary = "A AxisStickerSwift for sticker view"

s.description = <<-DESC
A longer description of AxisStickerSwift in Markdown format.
DESC

s.homepage = "https://cocoapods.org/pods/MySecondPod"
s.license = "Private"
s.author = "MyName" => "myemail@gmail.com"
s.platform = :ios, "10.0"


s.source = :git => 'https://bitbucket.org/myteam/my-second-project-swift.git', :commit => '11076ad76hto99975574fc357ce35dc3f4435fad'


s.source_files = "MySecondPod/DevelopmentPod/**/*"


s.public_header_files = 'MySecondPod/DevelopmentPod/**/*.h'
#s.resource = "Testing/DevelopementPod/BundleResources/ACVResourceBundle.bundle"

#s.compiler_flags = '-lxml2'

s.requires_arc = true
s.swift_version = '4.2'


s.dependency "MyFirstPod"


I'm trying to validate my podspec using following command



pod spec lint MySecondPod.podspec --sources='https://xp-dev.com/git/my-private-podspecs , https://github.com/CocoaPods/Specs' --verbose


And it returns an error



――― MARKDOWN TEMPLATE ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――



Command



/usr/local/bin/pod spec lint MySecondPod.podspec --sources=https://xp-dev.com/git/my-private-podspecs , https://github.com/CocoaPods/Specs --allow-warnings


Report



  • What did you do?


  • What did you expect to happen?


  • What happened instead?


Stack



 CocoaPods : 1.6.1
Ruby : ruby 2.3.7p456 (2018-03-28 revision 63024) [universal.x86_64-darwin17]
RubyGems : 2.5.2.3
Host : Mac OS X 10.13.6 (17G65)
Xcode : 10.1 (10B61)
Git : git version 2.17.2 (Apple Git-113)
Ruby lib dir : /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib
Repositories : aliyun - https://github.com/aliyun/aliyun-specs.git @ 46bf22c75c6289ab96fc31e6e49d8b75b0ac00c7
master - https://github.com/CocoaPods/Specs.git @ 3d345e50376c7ebc36e7502d6e104746ad32fcd0
xp-dev-git-my-private-podspecs - https://xp-dev.com/git/my-private-podspecs @ aace2f056978a2afd3a81a7129a60ada6f04707b


Plugins



cocoapods-deintegrate : 1.0.2
cocoapods-plugins : 1.0.0
cocoapods-search : 1.0.0
cocoapods-stats : 1.0.0
cocoapods-trunk : 1.3.1
cocoapods-try : 1.1.0


Podfile



# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'MyFirstPod' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

# Pods for MyFirstPod

end


Error



URI::InvalidURIError - bad URI(is not URI?): https://xp-dev.com/git/my-private-podspecs 
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/rfc3986_parser.rb:67:in `split'
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/rfc3986_parser.rb:73:in `parse'
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/common.rb:227:in `parse'
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/common.rb:714:in `URI'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.6.1/lib/cocoapods-core/source/manager.rb:396:in `name_for_url'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/sources_manager.rb:19:in `find_or_create_source_with_url'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/sources_manager.rb:58:in `source_with_name_or_url'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/validator.rb:46:in `block in initialize'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/validator.rb:46:in `map'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/validator.rb:46:in `initialize'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:64:in `new'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:64:in `block in run'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:63:in `each'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:63:in `run'
/Library/Ruby/Gems/2.3.0/gems/claide-1.0.2/lib/claide/command.rb:334:in `run'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command.rb:52:in `run'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/bin/pod:55:in `<top (required)>'
/usr/local/bin/pod:22:in `load'
/usr/local/bin/pod:22:in `<main>'


――― TEMPLATE END ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――



[!] Oh no, an error occurred.



Where is the issue?










share|improve this question






















  • You have to raise a bug with the CocoaPods.

    – Sachin Vas
    Mar 26 at 6:24

















0















I have created one private pod and need to create another pod by using previous pod. Added that previous pod as dependency inside the podspec file of second pod. This is my second pod' podspec file.



s.name = "MySecondPod"
s.version = "0.1.0"
s.summary = "A AxisStickerSwift for sticker view"

s.description = <<-DESC
A longer description of AxisStickerSwift in Markdown format.
DESC

s.homepage = "https://cocoapods.org/pods/MySecondPod"
s.license = "Private"
s.author = "MyName" => "myemail@gmail.com"
s.platform = :ios, "10.0"


s.source = :git => 'https://bitbucket.org/myteam/my-second-project-swift.git', :commit => '11076ad76hto99975574fc357ce35dc3f4435fad'


s.source_files = "MySecondPod/DevelopmentPod/**/*"


s.public_header_files = 'MySecondPod/DevelopmentPod/**/*.h'
#s.resource = "Testing/DevelopementPod/BundleResources/ACVResourceBundle.bundle"

#s.compiler_flags = '-lxml2'

s.requires_arc = true
s.swift_version = '4.2'


s.dependency "MyFirstPod"


I'm trying to validate my podspec using following command



pod spec lint MySecondPod.podspec --sources='https://xp-dev.com/git/my-private-podspecs , https://github.com/CocoaPods/Specs' --verbose


And it returns an error



――― MARKDOWN TEMPLATE ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――



Command



/usr/local/bin/pod spec lint MySecondPod.podspec --sources=https://xp-dev.com/git/my-private-podspecs , https://github.com/CocoaPods/Specs --allow-warnings


Report



  • What did you do?


  • What did you expect to happen?


  • What happened instead?


Stack



 CocoaPods : 1.6.1
Ruby : ruby 2.3.7p456 (2018-03-28 revision 63024) [universal.x86_64-darwin17]
RubyGems : 2.5.2.3
Host : Mac OS X 10.13.6 (17G65)
Xcode : 10.1 (10B61)
Git : git version 2.17.2 (Apple Git-113)
Ruby lib dir : /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib
Repositories : aliyun - https://github.com/aliyun/aliyun-specs.git @ 46bf22c75c6289ab96fc31e6e49d8b75b0ac00c7
master - https://github.com/CocoaPods/Specs.git @ 3d345e50376c7ebc36e7502d6e104746ad32fcd0
xp-dev-git-my-private-podspecs - https://xp-dev.com/git/my-private-podspecs @ aace2f056978a2afd3a81a7129a60ada6f04707b


Plugins



cocoapods-deintegrate : 1.0.2
cocoapods-plugins : 1.0.0
cocoapods-search : 1.0.0
cocoapods-stats : 1.0.0
cocoapods-trunk : 1.3.1
cocoapods-try : 1.1.0


Podfile



# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'MyFirstPod' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

# Pods for MyFirstPod

end


Error



URI::InvalidURIError - bad URI(is not URI?): https://xp-dev.com/git/my-private-podspecs 
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/rfc3986_parser.rb:67:in `split'
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/rfc3986_parser.rb:73:in `parse'
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/common.rb:227:in `parse'
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/common.rb:714:in `URI'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.6.1/lib/cocoapods-core/source/manager.rb:396:in `name_for_url'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/sources_manager.rb:19:in `find_or_create_source_with_url'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/sources_manager.rb:58:in `source_with_name_or_url'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/validator.rb:46:in `block in initialize'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/validator.rb:46:in `map'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/validator.rb:46:in `initialize'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:64:in `new'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:64:in `block in run'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:63:in `each'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:63:in `run'
/Library/Ruby/Gems/2.3.0/gems/claide-1.0.2/lib/claide/command.rb:334:in `run'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command.rb:52:in `run'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/bin/pod:55:in `<top (required)>'
/usr/local/bin/pod:22:in `load'
/usr/local/bin/pod:22:in `<main>'


――― TEMPLATE END ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――



[!] Oh no, an error occurred.



Where is the issue?










share|improve this question






















  • You have to raise a bug with the CocoaPods.

    – Sachin Vas
    Mar 26 at 6:24













0












0








0








I have created one private pod and need to create another pod by using previous pod. Added that previous pod as dependency inside the podspec file of second pod. This is my second pod' podspec file.



s.name = "MySecondPod"
s.version = "0.1.0"
s.summary = "A AxisStickerSwift for sticker view"

s.description = <<-DESC
A longer description of AxisStickerSwift in Markdown format.
DESC

s.homepage = "https://cocoapods.org/pods/MySecondPod"
s.license = "Private"
s.author = "MyName" => "myemail@gmail.com"
s.platform = :ios, "10.0"


s.source = :git => 'https://bitbucket.org/myteam/my-second-project-swift.git', :commit => '11076ad76hto99975574fc357ce35dc3f4435fad'


s.source_files = "MySecondPod/DevelopmentPod/**/*"


s.public_header_files = 'MySecondPod/DevelopmentPod/**/*.h'
#s.resource = "Testing/DevelopementPod/BundleResources/ACVResourceBundle.bundle"

#s.compiler_flags = '-lxml2'

s.requires_arc = true
s.swift_version = '4.2'


s.dependency "MyFirstPod"


I'm trying to validate my podspec using following command



pod spec lint MySecondPod.podspec --sources='https://xp-dev.com/git/my-private-podspecs , https://github.com/CocoaPods/Specs' --verbose


And it returns an error



――― MARKDOWN TEMPLATE ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――



Command



/usr/local/bin/pod spec lint MySecondPod.podspec --sources=https://xp-dev.com/git/my-private-podspecs , https://github.com/CocoaPods/Specs --allow-warnings


Report



  • What did you do?


  • What did you expect to happen?


  • What happened instead?


Stack



 CocoaPods : 1.6.1
Ruby : ruby 2.3.7p456 (2018-03-28 revision 63024) [universal.x86_64-darwin17]
RubyGems : 2.5.2.3
Host : Mac OS X 10.13.6 (17G65)
Xcode : 10.1 (10B61)
Git : git version 2.17.2 (Apple Git-113)
Ruby lib dir : /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib
Repositories : aliyun - https://github.com/aliyun/aliyun-specs.git @ 46bf22c75c6289ab96fc31e6e49d8b75b0ac00c7
master - https://github.com/CocoaPods/Specs.git @ 3d345e50376c7ebc36e7502d6e104746ad32fcd0
xp-dev-git-my-private-podspecs - https://xp-dev.com/git/my-private-podspecs @ aace2f056978a2afd3a81a7129a60ada6f04707b


Plugins



cocoapods-deintegrate : 1.0.2
cocoapods-plugins : 1.0.0
cocoapods-search : 1.0.0
cocoapods-stats : 1.0.0
cocoapods-trunk : 1.3.1
cocoapods-try : 1.1.0


Podfile



# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'MyFirstPod' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

# Pods for MyFirstPod

end


Error



URI::InvalidURIError - bad URI(is not URI?): https://xp-dev.com/git/my-private-podspecs 
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/rfc3986_parser.rb:67:in `split'
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/rfc3986_parser.rb:73:in `parse'
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/common.rb:227:in `parse'
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/common.rb:714:in `URI'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.6.1/lib/cocoapods-core/source/manager.rb:396:in `name_for_url'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/sources_manager.rb:19:in `find_or_create_source_with_url'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/sources_manager.rb:58:in `source_with_name_or_url'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/validator.rb:46:in `block in initialize'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/validator.rb:46:in `map'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/validator.rb:46:in `initialize'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:64:in `new'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:64:in `block in run'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:63:in `each'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:63:in `run'
/Library/Ruby/Gems/2.3.0/gems/claide-1.0.2/lib/claide/command.rb:334:in `run'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command.rb:52:in `run'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/bin/pod:55:in `<top (required)>'
/usr/local/bin/pod:22:in `load'
/usr/local/bin/pod:22:in `<main>'


――― TEMPLATE END ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――



[!] Oh no, an error occurred.



Where is the issue?










share|improve this question














I have created one private pod and need to create another pod by using previous pod. Added that previous pod as dependency inside the podspec file of second pod. This is my second pod' podspec file.



s.name = "MySecondPod"
s.version = "0.1.0"
s.summary = "A AxisStickerSwift for sticker view"

s.description = <<-DESC
A longer description of AxisStickerSwift in Markdown format.
DESC

s.homepage = "https://cocoapods.org/pods/MySecondPod"
s.license = "Private"
s.author = "MyName" => "myemail@gmail.com"
s.platform = :ios, "10.0"


s.source = :git => 'https://bitbucket.org/myteam/my-second-project-swift.git', :commit => '11076ad76hto99975574fc357ce35dc3f4435fad'


s.source_files = "MySecondPod/DevelopmentPod/**/*"


s.public_header_files = 'MySecondPod/DevelopmentPod/**/*.h'
#s.resource = "Testing/DevelopementPod/BundleResources/ACVResourceBundle.bundle"

#s.compiler_flags = '-lxml2'

s.requires_arc = true
s.swift_version = '4.2'


s.dependency "MyFirstPod"


I'm trying to validate my podspec using following command



pod spec lint MySecondPod.podspec --sources='https://xp-dev.com/git/my-private-podspecs , https://github.com/CocoaPods/Specs' --verbose


And it returns an error



――― MARKDOWN TEMPLATE ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――



Command



/usr/local/bin/pod spec lint MySecondPod.podspec --sources=https://xp-dev.com/git/my-private-podspecs , https://github.com/CocoaPods/Specs --allow-warnings


Report



  • What did you do?


  • What did you expect to happen?


  • What happened instead?


Stack



 CocoaPods : 1.6.1
Ruby : ruby 2.3.7p456 (2018-03-28 revision 63024) [universal.x86_64-darwin17]
RubyGems : 2.5.2.3
Host : Mac OS X 10.13.6 (17G65)
Xcode : 10.1 (10B61)
Git : git version 2.17.2 (Apple Git-113)
Ruby lib dir : /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib
Repositories : aliyun - https://github.com/aliyun/aliyun-specs.git @ 46bf22c75c6289ab96fc31e6e49d8b75b0ac00c7
master - https://github.com/CocoaPods/Specs.git @ 3d345e50376c7ebc36e7502d6e104746ad32fcd0
xp-dev-git-my-private-podspecs - https://xp-dev.com/git/my-private-podspecs @ aace2f056978a2afd3a81a7129a60ada6f04707b


Plugins



cocoapods-deintegrate : 1.0.2
cocoapods-plugins : 1.0.0
cocoapods-search : 1.0.0
cocoapods-stats : 1.0.0
cocoapods-trunk : 1.3.1
cocoapods-try : 1.1.0


Podfile



# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'MyFirstPod' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

# Pods for MyFirstPod

end


Error



URI::InvalidURIError - bad URI(is not URI?): https://xp-dev.com/git/my-private-podspecs 
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/rfc3986_parser.rb:67:in `split'
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/rfc3986_parser.rb:73:in `parse'
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/common.rb:227:in `parse'
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/uri/common.rb:714:in `URI'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.6.1/lib/cocoapods-core/source/manager.rb:396:in `name_for_url'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/sources_manager.rb:19:in `find_or_create_source_with_url'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/sources_manager.rb:58:in `source_with_name_or_url'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/validator.rb:46:in `block in initialize'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/validator.rb:46:in `map'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/validator.rb:46:in `initialize'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:64:in `new'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:64:in `block in run'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:63:in `each'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command/spec/lint.rb:63:in `run'
/Library/Ruby/Gems/2.3.0/gems/claide-1.0.2/lib/claide/command.rb:334:in `run'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/lib/cocoapods/command.rb:52:in `run'
/Library/Ruby/Gems/2.3.0/gems/cocoapods-1.6.1/bin/pod:55:in `<top (required)>'
/usr/local/bin/pod:22:in `load'
/usr/local/bin/pod:22:in `<main>'


――― TEMPLATE END ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――



[!] Oh no, an error occurred.



Where is the issue?







ios cocoapods






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 26 at 5:25









isuruisuru

1,0942 gold badges10 silver badges31 bronze badges




1,0942 gold badges10 silver badges31 bronze badges












  • You have to raise a bug with the CocoaPods.

    – Sachin Vas
    Mar 26 at 6:24

















  • You have to raise a bug with the CocoaPods.

    – Sachin Vas
    Mar 26 at 6:24
















You have to raise a bug with the CocoaPods.

– Sachin Vas
Mar 26 at 6:24





You have to raise a bug with the CocoaPods.

– Sachin Vas
Mar 26 at 6:24












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55350363%2fpodspec-validation-fails-when-dependency-adds%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55350363%2fpodspec-validation-fails-when-dependency-adds%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해