制作自己cocoapods库

今天来讲一下cocoapods制作,网上教程很多,就不再讲理论,直接操作:

1、创建仓库:

2、将仓库克隆本地:

git clone https://github.com/2360219637/CZCTestCode.git

 3、创建.podspes文件,此处命名为CZCTestCode

$ pod spec create CZCTestCode

 4、在桌面CZCTestCode目录中创建工程(此处命名为CZCTestCode),创建共享的类

5、编辑podspec文件

Pod::Spec.new do |s|
s.name         = "CZCTestCode"
s.version      = "1.0.0"
s.summary      = "一个建立pod仓库的简单demo."
s.description  = <<-DESC
这只是一个建立pod仓库的简单demo,并没有实际的意思。教学使用。
DESC
s.homepage     = "https://github.com/2360219637/CZCTestCode"
s.license      = { :type => "MIT", :file => "LICENSE" }
s.author             = { "陈志超" => "2360219637@qq.com" }
s.platform     = :ios, "7.0"
s.source       = { :git => "https://github.com/2360219637/CZCTestCode.git", :tag => s.version }
s.source_files  = "Classes", "CZCTestCode/CZCTestCode/Classes/**/*.{h,m}"
s.requires_arc = true
end

6、上传git并打tag

$ git add -A && git commit -m "创建版本 1.0.0."
$ git tag '1.0.0'
$ git push --tags
$ git push origin master

 7、验证podspec

$ pod spec lint

 验证成功会出现以下提示:

8、pod主干注册

pod trunk register 2360219637@qq.com "czc"

 9、发布你的pod

pod trunk push CZCTestCode.podspec

 这个过程等待时间较长,成功截图:

10、完成,此时终端可搜索到自己创建的pod库

 

posted @ 2016-10-13 20:55  夜晚看日出  阅读(2621)  评论(0编辑  收藏  举报