Questions tagged [podspec]

This is the file extension for CocoaPods, which is distributed as a ruby gem

Cocoapods (http://cocoapods.org/) is a dependency management framework for XCode. It allows you to declaratively define project dependencies and have them included in the build of your project. It's like Apache Maven or Ruby Gems for XCode.

370 questions
0
votes
1 answer

Pod spec lint error due to CocoaLumberjack subspec

Week ago I've pushed MyApp to my private cocoapods without any problems. I did not update anything with CocoaLumberjack in the meantime. My podspec contains: spec.subspec 'Core' do |cs| cs.dependency 'libextobjc', '~> 0.4' cs.dependency…
Nat
  • 12,032
  • 9
  • 56
  • 103
0
votes
1 answer

Cocoapods: Podspec validation, missing header file

Here is my podspec: Pod::Spec.new do |spec| spec.name = "appName" spec.version = "0.1" spec.summary = "Blah blah" spec.homepage = "http://myCompany.com/" spec.license = 'Apache 2.0' spec.author = {…
Nat
  • 12,032
  • 9
  • 56
  • 103
0
votes
1 answer

Cocoapods: Pod is in the master repo but is not available for install

I've created and submitted a podspec, BCJSONMapper, but when I search for it using pod search BCJSONMapper I receive the following error: [!] Unable to find a pod with name matching 'BCJSONMapper'. The spec is in the master repo (it was submitted…
Benedict Cohen
  • 11,912
  • 7
  • 55
  • 67
0
votes
1 answer

podspec with multiple sources (fallback)

I am using private pods. What I am trying to do is to create a .podspec that has multiple sources for one platform (iOS). Some kind of "fallback": If the first url is not available, use the source from an different repro. Is this even possible?
0
votes
1 answer

How to make cocoapods `install` command fetch the latest changes

How to make cocoapods install command fetch the latest changes for pods that are referenced by :git, eg: pod SomePod, :git => https://github.com/Doe/SomePod.git ? I would expect that it should work like so, because it the Podfile.lock there isn't…
Daniel
  • 1,225
  • 2
  • 15
  • 31
0
votes
1 answer

Don't reference all vendored libraries shipped with cocoapods

Situation I have a static Library Project which references a few other static Libraries. To distribute my (company internal) Library I added a podspec file. I added the third party libraries to the vendored_libraries like…
mike
  • 15
  • 3
-1
votes
1 answer

Getting Cocoapods Session Verification Error While Updating Version of Pod

I am unable to push my pod's version. I am continuously getting an error while session verification. Please check and help with it. We are trying to update our pod's version on it. It should verify my account successfully as always.
-1
votes
2 answers

Error while creating own spec git public repository pods

I am trying to create my own pods following tutorial However when I added my code to the pods project and tried to push it. Then I get following error - ERROR | xcodebuild: …
user968597
  • 1,164
  • 2
  • 15
  • 30
-1
votes
1 answer

'cocoapods' how to edit podspec file

Example taken from https://guides.cocoapods.org/syntax/podspec.html#requires_arc: spec.requires_arc = ['Classes/*ARC.m', 'Classes/ARC.mm'] What is the meaning of the following? Can you give an example that to use? Thanks! Classes/*ARC.m…
-1
votes
2 answers

Cocoapods error for one project target while others are working fine

I have create 3 project target (Development, Production and Staging).Expect Production other working fine after pull the changes of others while building the production target xcode giving the error : gone through some of the available solution but…
Pushpa Y
  • 1,010
  • 1
  • 12
  • 20
1 2 3
24
25