创建cocoapods 私有库。
pod lib create BlinkingLabel
创建模板,后面可以考虑直接拿创建好的模板修改一下来使用BlinkingLabel.podspec
修改该文件中的配置
s.version // 版本号,采用 ruby 版本号规则
s.homepage // 自己的远程仓库地址
s.source // 自己的远程仓库地址pod lib lint BlinkingLabel.podspec
验证 创建的 库关联远程库
git add .
git commit -m “Initial Commit"
git remote add origin https://github.com/<GITHUB_USERNAME>/BlinkingLabel.git // replace <GITHUB_USERNAME> with your github.com username
git push -u origin masterpod lib lint BlinkingLabel.podspec --verbose --allow-warnings
再次验证Pods/BlinkingLabel/Pod/Classes/ 中添加代码文件
pod install // 可以将代码文件自己引入工程中cd Example 文件, 安装自己的库
pod install推送自己的 本地库 到远程库中
git tag 0.1.0 // 这里的版本号 要跟 BlinkingLabel.podspec 保持一致
git push origin 0.1.0pod spec lint BlinkingLabel.podspec --verbose --allow-warnings 最后一次验证
创建远程索引库:https://git.dev.tencent.com/Flyfishering/WBBSpace.git
pod repo // 查看本地索引库pod repo add 本地索引库的名字 远程索引库 // 本地索引库跟远程索引库名字起一样的 都叫 WBBSpace
在 finder 路径 用户/.cocoapods/repos 中可以验证是否添加成功将本地索引文件推送到远程索引库中
pod repo push WBBSpace BlinkingLabel.podspec --verbose --allow-warnings //提交索引文件到远程索引库。可以在新 项目中使用该 库了
cd 项目路径
pod init
打开 Podfile,
1. 添加 source 'https://git.dev.tencent.com/Flyfishering/WBBSpace.git'
2. 添加 pod 'BlinkingLabel'
pod install // 就可以使用了
更新 pod 库版本
- 修改库代码
- 修改 BlinkingLabel.podspec 版本号
s.version = '0.1.3' - 更改 git tag 版本号 推送到 远程仓库
git tag 0.1.3 // 这里的版本号 要跟 BlinkingLabel.podspec 保持一致
git push origin 0.1.3 - 验证
pod spec lint BlinkingLabel.podspec --verbose --allow-warnings - 更新远程 索引库
pod repo push WBBSpace BlinkingLabel.podspec --verbose --allow-warnings
项目中使用 新版本的库
- 修改项目 Podfile 中的配置
pod 'BlinkingLabel','0.1.3' - pod install , 就更新到了最新版本库
pod 只识别 git 的 tag 标签