Teach you step by step to publish your own CocoaPods open source library

Teach you step by step to publish your own CocoaPods open source library

Follow the steps below to publish your own cocoapods open source library. It is made with conscience and will teach you everything you need!!

Below I will explain the whole process through a project called IFMMenu.

1. Write the code and upload it to github

When creating a project repository on GitHub, remember to create a LICENSE (license/authorization) file. This file is required.

Create a project repository on GitHub

2. Tag your project

Because cocoapods relies on tag versions, you must tag your project. To update it again in the future, you only need to tag your project, then modify the version in the .podspec file and submit it to the cocoapods official. Please see the submission command below

  1. //Tag for git, add a v in front of it for the first time
  2.  
  3. git tag "v1.0.0"  
  4.  
  5. git push --tags  

3. Register CocoaPods

Trunk requires CocoaPods version 0.33 or above. Use the pod --version command to check the version. If the version is lower, you need to upgrade.

  1. pod --version  
  2.  
  3. //Version lower than 0.33
  4.  
  5. sudo gen install cocoapods
  6.  
  7. pod setup

If you have already registered, you do not need to register. How can you check whether you have registered?

  1. pod trunk me

pod trunk me information

If you are not registered, execute the following command, and enter your email and username. I use the username on Github.

  1. // Adding --verbose can output detailed error information, which is convenient for viewing when an error occurs.  
  2.  
  3. pod trunk register [email protected] 'liugangios'   --verbose  

After registration is completed, an email will be sent to your mailbox. There is a link in the email and you need to click to confirm.

After registration is complete, use pod trunk me to verify whether the registration is successful.

4. Create .podspec

cd to your project directory and execute the command

  1. pod spec create IFMMenu

5. Edit .podspec

After creation, open .podspec, delete the comments, the ones with # in front are comments, or you can replace them with the following code, and then edit your own library information.

  1. Pod::Spec.new do |s|
  2.  
  3. s.name = 'IFMMenu'  
  4.  
  5. s.version = '1.0.2'  
  6.  
  7. s.authors = { 'liugangios' => '[email protected]' }
  8.  
  9. s.homepage = 'https://github.com/liugangios/IFMMenu'  
  10.  
  11. s.summary = 'a dropdown menu for ios like wechat homepage.'  
  12.  
  13. s.source = { :git => 'https://github.com/liugangios/IFMMenu.git' ,
  14.  
  15. :tag => s.version.to_s }
  16.  
  17. s.license = { :type => "MIT" , :file => "LICENSE" }
  18.  
  19. s.platform = :ios, '7.0'  
  20.  
  21. s.requires_arc = true  
  22.  
  23. s.source_files = 'IFMMenu'  
  24.  
  25. s.public_header_files = 'IFMMenu/*.h'  
  26.  
  27. s.ios.deployment_target = '7.0'  
  28.  
  29. end  
  • s.name: name, the keyword for pod search. Note that this must be the same as the name of .podspec, otherwise an error will be reported
  • s.version: version number, to_s: returns a string
  • s.author: author
  • s.homepage: project homepage address
  • s.summary: Project introduction
  • s.source: The address of the project source code
  • s.license: License
  • s.platform: Project support platform
  • s.requires_arc: whether to support ARC
  • s.source_files: source files that need to be included
  • s.public_header_files: header files that need to be included
  • s.ios.deployment_target: supported pod*** versions

Other non-essential fields

  • s.social_media_url: social media URL
  • s.resources: resource files
  • s.dependency: Dependency library, cannot depend on unpublished libraries
  1. s.license= { :type => “MIT”, :file => “LICENSE” }

It is recommended to write it like this. If you write something else, a warning will be reported, resulting in subsequent submission failures.

Source_files writing method and meaning

  1. "IFMMenu/*
  2.  
  3. "IFMMenu/IFMMenu/*.{h,m}"  
  4.  
  5. "IFMMenu/**/*.h"  

* means match all files

*.{h,m} means matching all files ending with .h and .m

** means match all subdirectories

s.source common writing method

  1. s.source = { :git => "https://github.com/liugangios/IFMMenu.git" , : commit => "68defea" }
  2.  
  3. s.source = { :git => "https://github.com/liugangios/IFMMenu.git" , :tag => 1.0.0 }
  4.  
  5. s.source = { :git => "https://github.com/liugangios/IFMMenu.git" , :tag => s.version }
  • commit => "68defea" means binding this Pod version to a commit in the Git repository
  • tag => 1.0.0 means binding this Pod version to a certain version of comit in the Git repository
  • tag => s.version means binding this Pod version to the same version of comit in the Git repository

6. Verify .podspec

Check here to see if you have the following files in your project:

  • Your project,
  • .podspec file,
  • LICENSE file

Project files

Use the following command to test your local .podspec file for syntax errors.

  1. pod spec lint IFMMenu.podspec --verbose  

7. Release

  1. pod trunk push IFMMenu.podspec

It takes a long time, please wait patiently, about 5-10 minutes, and the following prompt will appear after the release is successful

Post a successful screenshot

8. Test your own cocoapods

At this time, if you use pod search to search, you will be prompted that the search is not found. You can execute the following command to update the local search_index.json file

  1. rm ~/Library/Caches/CocoaPods/search_index.json

Then

  1. pod search IFMMenu

This command will recreate the search_index.json file. Please wait patiently for 5-10 minutes.

Search Results

Full command

  1. git tag "v1.0.0"  
  2.  
  3. git push --tags  
  4.  
  5. pod trunk register [email protected] 'liugangios'   --verbose  
  6.  
  7. pod trunk me
  8.  
  9. pod spec create IFMMenu
  10.  
  11. //Edit IFMMenu.podspec
  12.  
  13. pod spec lint IFMMenu.podspec
  14.  
  15. pod trunk push IFMMenu.podspec
  16.  
  17. rm ~/Library/Caches/CocoaPods/search_index.json
  18.  
  19. pod search IFMMenu

Error handling

  1. [!] Unable to accept duplicate entry for : XXXXX (1.0.0)

Meaning: cannot accept submissions of the same version

Solution:

1. Execute the following command

  1. git tag 1.0.1
  2.  
  3. git push --tags  

2. Modify the content in the XXXX.podspec file

  1. s.version = "1.0.1"  
  2.  
  3. s.source = { :Git => "https://github.com/xxx/xxx.git" , :tag => "1.0.1" }

3. Execute the commands pod spec lint, pod trunk push library name. podspec to verify and submit to CocoPods

***

IFMMenu is a multifunctional, customizable drop-down menu that mimics the menu added to the WeChat homepage. Welcome to download and give comments, star, and thank you for reading.

<<:  Android must know-Use Intent to open third-party applications and verify availability

>>:  Summary of daily development skills of Gradle

Recommend

Do you know all the new features of iOS 10?

[[172403]] What did Apple release at the just-con...

Sony was fined 1 million yuan. These advertising laws should be remembered.

Do you still remember that Sony was unanimously b...

Advanced on-demand marketing techniques for video platforms!

Recently, the advanced on-demand broadcast of &qu...

OPPO App Store non-standard advertising process

1. Delivery Process 1. CP regular operation activ...

IQIYI account traffic marketing skills!

one iQiyi currently ranks first in the industry i...

6 suggestions to create an operational promotion plan that can be implemented!

Whether you are a novice in website operation or ...

5 ways to express your creative advertising skills!

In 2014, Tim Collins published " 100 ways to...

Inheriting Steve Jobs's wish, Apple University plans to enter China

[[122186]] On November 4, people familiar with th...

How to promote to KOL? Here are 3 ways!

Why do KOLs ignore me? How to convince KOL to pro...

Top 10 Core Data tools and open source libraries loved by developers

Core Data is a great choice for storing and query...