美文网首页
pod 私有库 模块化之路

pod 私有库 模块化之路

作者: bo_song | 来源:发表于2017-01-11 17:31 被阅读0次

    http://blog.csdn.net/u014773226/article/details/52919153 pod详情使用方法
    http://www.jianshu.com/p/716554fc9401 豆瓣模块化
    http://www.cnblogs.com/oc-bowen/p/5885476.html 模块化

    http://www.cocoachina.com/ios/20150228/11206.html 私有库
    iOS组件化实践方案-LDBusMediator炼就

    pod 私有库库提交前的验证
    --备注:AMspecs 为私有库配置文件的总仓库名称
    --TestLibrary为你建的私有库名称
    
    $ pod lib lint 
    
     --verbose 
    
     --sources='http://你的库仓库地址/SPEC/AMspecs.git,https://github.com/CocoaPods/Specs.git'  
    
     --allow-warnings
    
    $ git tag -m "first release" "0.1.0"   #pod 打tag***
    
    $ git push --tags     #推送tag到远端仓库
    
    $ pod repo push AMspecs TestLibrary.podspec  
      --allow-warnings
      --verbose
    

    相关文章

      网友评论

          本文标题:pod 私有库 模块化之路

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