CocoaPods - 搭建私有库

一、前言

公司项目繁多,为了框架的统一和更好维护,需要将自己的业务,封装为私有库,上传到公司私有git上,利用cocoapods统一管理。

分解需求:

  • 1、创建私有spec repo(相当于cocoapods私有库资源中心), 所有的私有库上传记录在私有spec中
  • 2、工程封装为私有库,上传到私有spec repo中
  • 3、项目工程集成私有库

二、创建私有索引库Spec Repo

1. 什么是spec repo?

它是所有的Pods的一个索引,就是一个容器,所有公开的Pods都在这个里面,它实际是一个Git仓库remote端在GitHub上。

在Podfile中,我们通过

pod 'AFNetworking'

它会被clone到本地的~/.cocoapods/repos目录下,可以进入到这个目录看到master文件夹就是这个官方的Spec Repo了。

我们可以通过命令,

pod repo list

查看mac 上的repo列表:

master
- Type: git (master)
- URL:  https://github.com/CocoaPods/Specs.git
- Path: /Users/louielee/.cocoapods/repos/master

Spec Repo了,目录的结构如下:

.
├── YTestPod
    └── 0.0.3
        └── YTestPod.podspec

2. 创建远端私有索引库

在git服务器上创建一个私有仓库,私有Spec Repo取名为YTestSpec。

pod repo add [Private Repo Name] [Git HTTPS clone URL]

示例

pod repo add YTestSpec https://e.coding.net/LouieLee/lypodtest/YTestSpec.git

完成后使用pod repo list查看如下:

MacBook-Pro$ pod repo list

master
- Type: git (master)
- URL:  https://github.com/CocoaPods/Specs.git
- Path: /Users/louielee/.cocoapods/repos/master

YTestSpec
- Type: git (master)
- URL:  https://e.coding.net/LouieLee/lypodtest/YTestSpec.git
- Path: /Users/louielee/.cocoapods/repos/YTestSpec

 ...

查看本地pod repos路径如下:

MacBook-Pro$ cd /Users/xxx/.cocoapods/repos
MacBook-Pro$ ls

 Spec_Lock  YTestSpec  master  trunk

此时可以看到YTestSpec已经在本地创建。

注:这一步是在本地添加私有库source,其他开发人员Podfile需要集成私有spec上的私有库,都需要首先通过pod repo add命令,本地clone spec repo。

附上其他常用命令:

更新本地[Private Repo Name]的spec repo。私有库podspec文件更改并push到spec

pod repo update [Private Repo Name]

本地删除spec repo

pod repo remove [Private Repo Name]

三、创建私有库

1. 什么是私有库?

包含具体功能的项目代码,使用Git进行代码管理,被加入私有仓库来实现cocoapod版本管理和安装使用。

2. 创建私有库

创建私有库的标准格式,会使用git-template默认的模板创建私有库

pod lib create [Private Lib name]

示例

pod lib create YTestPod

通过--template-url参数,指定私有库模板地址

pod lib create --verbose --template-url=[template URL] [Private pod name]

pod-template模板来生成私有库,创建过程中需要确定以下问题:

What language do you want to use?? [ Swift / ObjC ]
 > ObjC

Would you like to include a demo application with your library? [ Yes / No ]
 > Yes

Which testing frameworks will you use? [ Specta / Kiwi / None ]
 > None

Would you like to do view based testing? [ Yes / No ]
 > No

What is your class prefix?
 > Y

Running pod install on your new library.

...

注意:在clone pod-template最好使用代理,否则可能会失败

 export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7890

成功后我们看到的目录结构如下:

MacBook-Pro$ tree -L 2
.
├── Example
│   ├── YTestPod
│   ├── YTestPod.xcodeproj
│   ├── YTestPod.xcworkspace
│   ├── Podfile
│   ├── Podfile.lock
│   ├── Pods
│   └── Tests
├── YTestPod
│   ├── Assets
│   └── Classes
├── YTestPod.podspec
├── LICENSE
├── README.md
└── _Pods.xcodeproj -> Example/Pods/Pods.xcodeproj

10 directories, 5 files

注:tree需要自行安装

  • YTestPod.podspec是私有库的配置文件
  • YTestPod是私有库代码文件,Assets是放资源,Classes下是编译的源文件
  • Example是自动生成的测试工程。

3. 编辑私有库的配置文件

如有疑问可参照官方文档

#
# Be sure to run `pod lib lint YTestPod.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |s|
  # 名称,pod search搜索的关键词,注意这里一定要和.podspec一致
  s.name             = 'YTestPod'
  # 版本号,每一个版本对应一个tag
  s.version          = '0.1.0'
  # 私有库摘要
  s.summary          = 'A short description of HTDNetworkManage.'

# This description is used to generate tags and improve search results.
#   * Think: What does it do? Why did you write it? What is the focus?
#   * Try to keep it short, snappy and to the point.
#   * Write the description between the DESC delimiters below.
#   * Finally, don't worry about the indent, CocoaPods strips it!

  s.description      = <<-DESC
TODO: Add long description of the pod here.
# 这里是私有库描述说明
                       DESC

  # 项目主页地址
  s.homepage         = 'https://github.com/Louie/YTestPod'
  # s.screenshots     = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
  # 许可证
  s.license          = { :type => 'MIT', :file => 'LICENSE' }
  # 作者
  s.author           = { 'Louie' => 'louie@126.com' }
  # 项目仓库地址(重要)
  # 私有库的remote地址和tag。也可以:branch => 'master'设置分支。
  s.source           = { :git => 'https://github.com/Louie/YTestPod.git', :tag => s.version.to_s }
  # 个人主页网址
  # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

  s.ios.deployment_target = '9.0'

  # 源文件路径
  s.source_files = 'YTestPod/Classes/**/*'
  # * 表示匹配所有文件
  # ** 表示匹配所有子目录
  # 如果有多个目录下则用逗号分开如['','','']形式

  # 资源文件路径
  # s.resource_bundles = {
  #   'YTestPod' => ['YTestPod/Assets/*.png']
  # }

  # 公开的头文件地址
  # s.public_header_files = 'Pod/Classes/**/*.h'

  # 所需的framework,多个用逗号隔开
  # s.frameworks = 'UIKit', 'MapKit'

  # 依赖关系,该项目所依赖的其他库,
  # s.dependency 'AFNetworking', '~> 2.3'
  # 如果有多个需要填写多个s.dependency。cocoapods会自动将依赖的其他库集成到工程中。
end

3. 编写私有库代码

私有库源码放在前面说的/YTestPod/Classes中

4. 提交私有库代码到git

可以使用自己平时习惯的方式提交,以下我使用命令提交。
附上git命令:

<!-- 查看状态 -->
git status
<!-- 添加文件到缓冲区 -->
git add .
<!-- 从缓冲区提交代码到仓库 -->
git commit -m "描述"
<!-- 将本地库的代码推到远程库 -->
git push -f origin master
<!-- 添加tag -->
git tag -a '0.0.1'  -m '描述'
<!-- 查看tag -->
git tag 
<!-- 将本地创建的tag推到远程库 -->
git push --tags
<!-- 删除tag -->
git tag -d '0.0.1'

注:podspec配置文件中 s.source设置了:tag => s.version.to_s,version是0.1.0,所以需要打tag,tag必须version保持一致

5. 校验私有库

注:当代码里有警告时会验证失败,可通过参数
参数解释
--verbose 输出详情
--allow-warnings 允许警告
--use-libraries 允许使用静态库
--skip-import-validation 跳过验证

5.1. 验证本地podspec文件

本地验证不会验证 s.source 中的tag

MacBook-Pro$ pod lib lint

 -> YTestPod (0.0.1)
    - WARN  | summary: The summary is not meaningful.
    - NOTE  | xcodebuild:  note: Using new build system
    - NOTE  | xcodebuild:  note: Building targets in parallel
    - NOTE  | xcodebuild:  note: Using codesigning identity override: -
    - NOTE  | [iOS] xcodebuild:  note: Planning build
    - NOTE  | [iOS] xcodebuild:  note: Constructing build description
    - NOTE  | [iOS] xcodebuild:  warning: Skipping code signing because the target does not have an Info.plist file and one is not being generated automatically. (in target 'App' from project 'App')

YTestPod passed validation.

注:pod spec lint只验证一个本地仓库

5.2. 验证远程podspec

远程验证会验证 s.source 中的tag,如果此时没有打上相应的标签则会报错

MacBook-Pro$ pod spec lint

 -> YTestPod (0.0.1)
    - WARN  | summary: The summary is not meaningful.
    - NOTE  | xcodebuild:  note: Using new build system
    - NOTE  | xcodebuild:  note: Building targets in parallel
    - NOTE  | xcodebuild:  note: Using codesigning identity override: -
    - NOTE  | [iOS] xcodebuild:  note: Planning build
    - NOTE  | [iOS] xcodebuild:  note: Constructing build description
    - NOTE  | [iOS] xcodebuild:  warning: Skipping code signing because the target does not have an Info.plist file and one is not being generated automatically. (in target 'App' from project 'App')

Analyzed 1 podspec.

YTestPod passed validation.

注:pod spec lint更为精确,会同时验证本地仓库和远程仓库。

6. 发布私有库

<!-- 跳转到本地仓路径提交本地仓内容 -->
cd /Users/xxx/.cocoapods/repos/[Private Repo Name]
<!-- 允许空提交 -->
git commit --allow-empty
<!-- 将本地库的代码推到远程库 -->
git push -f origin master
<!-- 创建库 -->
pod lib create [Private Repo Name]
<!-- 更新库 -->
<!--[Private Repo Name] 远端仓库名
[Private Lib Name].podspec 要上传的podspec 注意[Private Lib Name].podspec所在的路径,我这里使用的是相对路径,你也可以使用绝对路径比如:/Users/xxx/Documents/[Private Lib Name].podspec
--sources是索引库对应的远端仓库地址 -->
pod repo push [Private Repo Name] [Private Lib Name].podspec --sources='[Private Repo clone HTTPS URL]'

注:如果有警告导致发布失败,需要使用 --verbose --allow-warnings忽略警告

示例

MacBook-Pro$ pod repo push YTestSpec YTestPod.podspec --sources='https://e.coding.net/LouieLee/lypodtest/YTestSpec.git'

Validating spec
 -> YTestPod (0.0.1)
    - WARN  | summary: The summary is not meaningful.
    - NOTE  | xcodebuild:  note: Using new build system
    - NOTE  | xcodebuild:  note: Building targets in parallel
    - NOTE  | xcodebuild:  note: Using codesigning identity override: -
    - NOTE  | [iOS] xcodebuild:  note: Planning build
    - NOTE  | [iOS] xcodebuild:  note: Constructing build description
    - NOTE  | [iOS] xcodebuild:  warning: Skipping code signing because the target does not have an Info.plist file and one is not being generated automatically. (in target 'App' from project 'App')

Updating the `YTestSpec' repo

Adding the spec to the `YTestSpec' repo

 - [Add] YTestPod (0.0.1)

Pushing the `YTestSpec' repo

注: 如果设置代理可能会出现发布失败需要关闭

关闭代理

unset http_proxy
unset https_proxy

发布成功可以通过pod search查到该私有库

MacBook-Pro$ pod search YTestPod

-> YTestPod (0.0.3)
   A short description of YTestPod.
   pod 'YTestPod', '~> 0.0.3'
   - Homepage: https://louielee.coding.net/p/lypodtest/d/YTestPod/git
   - Source:   https://e.coding.net/LouieLee/lypodtest/YTestPod.git
   - Versions: 0.0.3 [YTestSpec repo]

四、集成测试

在Podfile文件最顶部添加如下描述,然后执行pod install

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

source 'http://xxx/HTDNetworkManageSpec.git'

target 'YBRouterAndDecouplingDemo' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  pod 'HTDNetworkManage'

  # Pods for YBRouterAndDecouplingDemo

end

私有索引库和私有库是一个git地址。会导致以下问题

An unexpected version directory ‘Classes’ was encountered for the /Users/name/.cocoapods/repos/** Pod in the xxx repository.

[!] Unable to find a pod with name, author, summary, or description matching 'xxx'

私有库完成。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,723评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,080评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,604评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,440评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,431评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,499评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,893评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,541评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,751评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,547评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,619评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,320评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,890评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,896评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,137评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,796评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,335评论 2 342

推荐阅读更多精彩内容

  • 前言 iOS组件化开发很重要的一个技术点:CocoaPods私有库的搭建。而且最近答应一个网友要写一篇关于《Coc...
    __Mr_Xie__阅读 7,205评论 2 27
  • CocoaPods是非常好用的一个iOS依赖管理工具,使用它可以方便的管理和更新项目中所使用到的第三方库,以及将自...
    小_夭阅读 1,148评论 0 0
  • 组件库(以图片资源库为例)设计开发过程: 1、创建一个文件夹,在文件夹中执行pod lib create name...
    a4a7cd7be20f阅读 362评论 0 1
  • 一. CocoaPods公共仓库 查看CocoaPods 本地目录 打开finder command + shi...
    kamto阅读 10,180评论 5 25
  • 最近想为公司搭建cocoapods私有库框架,老早之前做过,踩过不少坑,想不到又一次掉坑里。果真是好记性不如烂笔头...
    生光阅读 1,516评论 0 4