pod

作者: 健健锅 | 来源:发表于2018-04-28 10:47 被阅读26次
    cd desktop/pod
    pod lib create ZJBasicTools
    填写Pod的Metadata
     s.summary          = 'a Basic Tool for iOS'
    s.source_files = 'ZJBasicTools/Classes/**/*.{h,m}'
    pod lib lint ZJBasicTools.podspec  //bendi验证
    git add .
    git commit -m ZJBasicTools
    git pull --rebase origin master
    git remote add origin giturl
    git push origin master
    pod spec lint ZJBasicTools.podspec  //验证
    git tag 0.1.0
    example
    git push origin 0.1.0
    cd
    //从example路径 切换回 ZJBasicTools
    pod trunk push ZJBasicTools.podspec 
    
      - ERROR | [iOS] file patterns: The `source_files` pattern did not match any file.
    

    https://www.jianshu.com/p/41611b14942b
    验证时遇到的错误
    https://blog.csdn.net/Asia_ZhangQQ/article/details/71195205

    https://blog.csdn.net/gaozhenweigzw/article/details/47320861

    相关文章

      网友评论

          本文标题:pod

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