创建cocoapods 私有库。

创建cocoapods 私有库。

  1. pod lib create BlinkingLabel
    创建模板,后面可以考虑直接拿创建好的模板修改一下来使用

  2. BlinkingLabel.podspec
    修改该文件中的配置
    s.version // 版本号,采用 ruby 版本号规则
    s.homepage // 自己的远程仓库地址
    s.source // 自己的远程仓库地址

  3. pod lib lint BlinkingLabel.podspec
    验证 创建的 库

  4. 关联远程库
    git add .
    git commit -m “Initial Commit"
    git remote add origin https://github.com//BlinkingLabel.git // replace with your github.com username
    git push -u origin master

  5. pod lib lint BlinkingLabel.podspec --verbose --allow-warnings
    再次验证

  6. Pods/BlinkingLabel/Pod/Classes/ 中添加代码文件
    pod install // 可以将代码文件自己引入工程中

  7. cd Example 文件, 安装自己的库
    pod install

  8. 推送自己的 本地库 到远程库中
    git tag 0.1.0 // 这里的版本号 要跟 BlinkingLabel.podspec 保持一致
    git push origin 0.1.0

  9. pod spec lint BlinkingLabel.podspec --verbose --allow-warnings 最后一次验证

  10. 创建远程索引库:https://git.dev.tencent.com/Flyfishering/WBBSpace.git
    pod repo // 查看本地索引库

  11. pod repo add 本地索引库的名字 远程索引库 // 本地索引库跟远程索引库名字起一样的 都叫 WBBSpace
    在 finder 路径 用户/.cocoapods/repos 中可以验证是否添加成功

  12. 将本地索引文件推送到远程索引库中
    pod repo push WBBSpace BlinkingLabel.podspec --verbose --allow-warnings //提交索引文件到远程索引库。

  13. 可以在新 项目中使用该 库了
    cd 项目路径
    pod init
    打开 Podfile,
    1. 添加 source 'https://git.dev.tencent.com/Flyfishering/WBBSpace.git'
    2. 添加 pod 'BlinkingLabel'
    pod install // 就可以使用了


更新 pod 库版本

  1. 修改库代码
  2. 修改 BlinkingLabel.podspec 版本号
    s.version = '0.1.3'
  3. 更改 git tag 版本号 推送到 远程仓库
    git tag 0.1.3 // 这里的版本号 要跟 BlinkingLabel.podspec 保持一致
    git push origin 0.1.3
  4. 验证
    pod spec lint BlinkingLabel.podspec --verbose --allow-warnings
  5. 更新远程 索引库
    pod repo push WBBSpace BlinkingLabel.podspec --verbose --allow-warnings

项目中使用 新版本的库

  1. 修改项目 Podfile 中的配置
    pod 'BlinkingLabel','0.1.3'
  2. pod install , 就更新到了最新版本库

pod 只识别 git 的 tag 标签

你可能感兴趣的:(创建cocoapods 私有库。)