三、打造本地私有索引库和远程私有索引库

一、打造本地私有库

  1. 创建一个localLib的文件夹,并且按照名字创建一个文件夹TZSoundBase1然后需要一个Classes文件夹对应,所有的源码category都放在这里
步骤一
  1. 创建一个git代码仓库和一个.spec文件,并且注意homePage和source属性的设置
$ cd /LocalLib/LRSoundBase1 
$ git init
# 在 Classes 中添加源代码
$ git add .
$ git commit --m '增加了分类'
$ pod spec create LRSoundBase1
三、打造本地私有索引库和远程私有索引库_第1张图片
LRSoundBase1.podspec
  1. 在项目中创建一个podfile文件导入我们创建好的本地私有库,注意我们的文件路径
$ cd /LRSound
$ pod init 
# 编辑 podfile 文件
三、打造本地私有索引库和远程私有索引库_第2张图片
profile

4.使用pod install集成我们的组件到宿主工程中

$ pod install
三、打造本地私有索引库和远程私有索引库_第3张图片
本地私有库导入成功

二、本地私有库优化的原因:

  1. 我们需要手动创建git仓库
  2. 需要手动创建.spec文件
  3. 需要手动创建测试工程

优化的方案:使用pod的模板库解决之

  1. 使用 pod 模板库创建本地私有库LRSoundBase1
$ cd /本地私有库方案优化/LocalLib
$ pod lib create LRSoundBase1  #使用 pod 模板库创建本地私有库LRSoundBase1
  1. 将框架源代码放到 Classes 文件夹下面:


    三、打造本地私有索引库和远程私有索引库_第4张图片
    添加框架源代码
  2. 安装到测试工程
$ cd /本地私有库方案优化/LocalLib/LRSoundBase1/Example 
$ pod install
  1. 编辑 LRSoundBase1.podspec 框架描述符文件
$ cd /本地私有库方案优化/LocalLib/LRSoundBase1 
$ pod lib lint  --allow-warnings  #本地验证
  1. 新建项目进行安装测试
$ cd /本地私有库方案优化/LRSound 
$ pod init
# 修改 Example文件夹的 PodFile 文件,同上面的 profile 图;
$ pod install

三、如何打造我们的远程私有索引库

  1. 创建一个pod的模板库
  2. 在远程创建一个私有远程代码仓库
  3. 将源码上传到远程代码仓库里
  4. 在本地添加一个私有索引库
  5. 修改好.spec文件
  6. 将.spec文件上传到本地索引库,本地索引库会将.spec文件自动上传到远程私有索引库
  7. 集成到宿主工程中
三、打造本地私有索引库和远程私有索引库_第5张图片
安装第三方框架流程图.png

三、打造本地私有索引库和远程私有索引库_第6张图片
打造远程私有索引库思路.png

① 创建一个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
三、打造本地私有索引库和远程私有索引库_第7张图片
克隆远程私有索引库到本地

⑤ 将.spec文件上传到本地索引库,本地索引库会将.spec文件自动上传到远程私有索引库

$ pod repo push LRSoundSpec2 LRSoundBase2.podspec
三、打造本地私有索引库和远程私有索引库_第8张图片
pod repo push LRSoundSpec2 LRSoundBase2.podspec
三、打造本地私有索引库和远程私有索引库_第9张图片
将.spec文件上传到本地索引库.png
自动上传到远程私有索引库.png

⑥ 集成到宿主工程

$ pod repo #查看本地所有索引库
$ pod install

注意: podfile 文件中需指明索引库所在源地址

三、打造本地私有索引库和远程私有索引库_第10张图片
podfiel.png

⑦ 打造远程私有索引库流程图


三、打造本地私有索引库和远程私有索引库_第11张图片
打造远程私有索引库流程图

你可能感兴趣的:(三、打造本地私有索引库和远程私有索引库)