发布自己的CocoPods

2018-06-15  本文已影响11人  双手插兜Jeff

相信大家都有自己建一个cocopads的想法。Follow the step!

1.github创建一个项目

2.clone项目到本地

3.创建podspec文件

1.用pod的命令创建在<font color=#B4354E>项目中</font>创建podspec文件

pod spec create JIEAddtions

2.编辑podspec文件。

例子:

Pod::Spec.new do |s|

  s.name         = "JIEAddtions"
  s.version      = "0.0.1" #版本号(必须和source的tag对上)
  s.summary      = "Some Category for iOS"
  s.description  = <<-DESC
                   Some Category for iOS Desc
                   DESC

  s.homepage     = "https://github.com/PomTTcat/JIEAddtions" #主页
  s.license      = "MIT"
  s.author       = { "studentBGY" => "craftsmanb6@gmail.com" }

  s.platform     = :ios, "8.0"
  s.source       = { :git => "https://github.com/PomTTcat/JIEAddtions.git", :tag => "#{s.version}" } #此处是 git => 主页+git
  s.source_files  = "JEMainFile/JEAddtions/*.{h,m}","JEMainFile/JEModel/*.{h,m}"
  s.frameworks = "UIKit", "Foundation"

end

<font color=#B4354E>项目必须有license,切记。</font>


4.提交修改到github

5.注册trunk并上传

更新pod

问题

GitHub链接有什么不懂,可以参考我这个项目的目录结构。
上一篇下一篇

猜你喜欢

热点阅读