美文网首页
创建Pod私有库

创建Pod私有库

作者: cyj_ya | 来源:发表于2019-04-03 09:22 被阅读0次

    创建私有库流程
    1.创建一个文件夹
    2.pod lib create LibNameXXX
    这里会询问几个问题(答案根据实际情况设置),分别是:
    1、平台选择
    --iOS
    1、语言选择
    —— 教程选择Objc,如果要做Swift私有库,请选择输入Swift
    2、是不是需要一个demo项目工程
    ​ —— 教程选择Yes,需要创建一个demo工程,建议创建一个demo工程
    3、测试框架使用哪一个
    ​ —— 教程选择None
    4、是不是需要做基本的测试
    ​ —— 教程选择Yes
    5、类前缀是什么
    ​ —— 输入XXX

    发布私有库
    git add .
    git commit -m "Tools 1 init"
    git push
    git tag 1
    git push --tags

    通过pod repo add <本地索引库的名字> <远程索引库的地址> ,创建本地索引库并和远程索引库做关联(注:本地索引库的名字建议和远程索引库起的名字一样)

    通过pod spec lint - -verbose - -allow-warnings 命令验证podspec索引文件

    pod repo push WQSpecs WQCore.podspec
    验证通过后,pod repo push <本地索引库> <索引文件名> - -verbose - -allow-warnings 提交索引文件到远程索引库。

    ****pod库验证存在缓存*****
    pod cache clean PodName


    *********流程***********
    1.创建git仓库,提交项目所有代码
    2.git tag / git push --tags
    3.(如果是私有库)创建本地索引库: pod repo add <本地索引库的名字> <远程索引库的地址>
    4.验证库, 远程->pod spec lint --verbose --allow-warnings
    验证库, 本地->pod lib lint --verbose --allow-warnings
    远程库,修改代码未新增tag 需要清除pod缓存 -> pod cache clean <PodName>
    5.发布库 -> pod repo push <本地索引库> <索引文件名>
    列: pod repo push XXSpec xxx.podspec

    导入私有库验证 ->
    pod spec lint --sources=https://gitlab.code.anzogame.com/iOS_New_Framework/Specs.git,master --verbose --allow-warnings

    pod lib lint --sources=https://gitlab.code.anzogame.com/iOS_New_Framework/Specs.git,master --verbose --allow-warnings

    //使用静态库
    --use-libraries

    *********git 相关********
    删除本地tag -> git tag -d tag_x
    同步删除远程 -> git push origin :refs/tags/tag_x

    相关文章

      网友评论

          本文标题:创建Pod私有库

          本文链接:https://www.haomeiwen.com/subject/wstabqtx.html