一、打造本地私有库
- 创建一个localLib的文件夹,并且按照名字创建一个文件夹TZSoundBase1然后需要一个Classes文件夹对应,所有的源码category都放在这里
- 创建一个git代码仓库和一个.spec文件,并且注意homePage和source属性的设置
$ cd /LocalLib/LRSoundBase1
$ git init
# 在 Classes 中添加源代码
$ git add .
$ git commit --m '增加了分类'
$ pod spec create LRSoundBase1
- 在项目中创建一个podfile文件导入我们创建好的本地私有库,注意我们的文件路径
$ cd /LRSound
$ pod init
# 编辑 podfile 文件
4.使用pod install集成我们的组件到宿主工程中
$ pod install
二、本地私有库优化的原因:
- 我们需要手动创建git仓库
- 需要手动创建.spec文件
- 需要手动创建测试工程
优化的方案:使用pod的模板库解决之
- 使用 pod 模板库创建本地私有库LRSoundBase1
$ cd /本地私有库方案优化/LocalLib
$ pod lib create LRSoundBase1 #使用 pod 模板库创建本地私有库LRSoundBase1
-
将框架源代码放到 Classes 文件夹下面:
- 安装到测试工程
$ cd /本地私有库方案优化/LocalLib/LRSoundBase1/Example
$ pod install
- 编辑
LRSoundBase1.podspec
框架描述符文件
$ cd /本地私有库方案优化/LocalLib/LRSoundBase1
$ pod lib lint --allow-warnings #本地验证
- 新建项目进行安装测试
$ cd /本地私有库方案优化/LRSound
$ pod init
# 修改 Example文件夹的 PodFile 文件,同上面的 profile 图;
$ pod install
三、如何打造我们的远程私有索引库
- 创建一个pod的模板库
- 在远程创建一个私有远程代码仓库
- 将源码上传到远程代码仓库里
- 在本地添加一个私有索引库
- 修改好.spec文件
- 将.spec文件上传到本地索引库,本地索引库会将.spec文件自动上传到远程私有索引库
- 集成到宿主工程中
① 创建一个pod的模板库
$ cd /远程私有库方案/RemoteLib
$ pod lib create LRSoundBase2
② 添加框架源码到 Classes 文件夹,编辑 LRSoundBase2.podspec
框架描述符文件
③ 将源码上传到远程代码仓库, 并且添加 tag
$ cd /远程私有库方案/RemoteLib/LRSoundBase2
$ git add .
$ git commit --m '增加了基础组件'
$ git remote add origin https://gitee.com/lrskey/LRSoundBase2.git #跟远程代码仓库建立连接
$ git remote #验证是否连接上
$ git push origin master # 推送到远程
$ git tag '0.1.0' #添加 tag
$ git push --tags # 推送到远程
$ pod lib lint --allow-warnings #本地验证
$ pod spec lint --allow-warnings #远程验证
# 本地验证和远程验证必须先做,出错了可以及时修改
④ 克隆远程私有索引库到本地
# LRSoundBase2:私有库的名称
# https://gitee.com/lrskey/LRSoundBase2.git 私有库的地址
$ pod repo add LRSoundSpec2 https://gitee.com/lrskey/LRSoundSpec2.git
⑤ 将.spec文件上传到本地索引库,本地索引库会将.spec文件自动上传到远程私有索引库
$ pod repo push LRSoundSpec2 LRSoundBase2.podspec
⑥ 集成到宿主工程
$ pod repo #查看本地所有索引库
$ pod install
注意: podfile 文件中需指明索引库所在源地址
⑦ 打造远程私有索引库流程图