iOS发布自己的开源库到cocopods

第一步


把自己的框架更新到github 上。


这里就不详细介绍如何把项目更新到github上了

第二步


这个时候我们的项目已经挂在github上了

我们需要给本地的项目新建一个Podspec描述文件


进入命令行

// 进入到项目目录下

$cd xxx/xxx/xxx

// 创建Podspec文件

$pod spec create “你的Podspec名字”

第三步


此时你已经在项目目录下创建了一个Podspec文件了

这个时候我们需要对他进行编辑

注意:最好用xcode 去编辑 防止错误 只能输入英文标点


Pod::Spec.new do |s|

s.name = “项目名字”

s.version ="版本号"

s.summary = "项目介绍"

s.homepage = "你的主页地址"

s.license = "MIT" //这里就选这个许可证

s.author ={"你的名字" => "邮箱"}

s.platform =iOS,"最低支持的系统"

s.source ={git =>"项目git地址",tag =>"tag号"}

s.source_files = "text/*/.(h.m)" //这里是项目路径要传的文件

s.framework ="UIKit" //依赖的系统库 可以依赖多个

// 若需要依赖其他开源的第三方库 可以写成下列形式 若需要有多个就复制下面代码 添加第三方库

// s.dependency "AFNetWorking"

// 如果需要配置依赖系统库

// s.framework = 'SomeFramework'// 设置依赖的系统库名称

// s.frameworks = 'SomeFramework', 'AnotherFramework'//设置多个系统库名称

// 需要依赖系统的library

s.library = 'iconv'// 设置只依赖一个系统的library

s.libraries = 'iconv', 'xml2' // 设置依赖多个系统的library

// 这里是工程配置,这样使用者就不需要手动处理,由pod自动处理了

s.xcconfig = {'HEADER_SEARCH_PATHS' =>'$(SDKROOT)/usr/include/libxml2'}

附:我自己的一个例子

iOS发布自己的开源库到cocopods_第1张图片
YPTreeView.podspec

第四步


然后我们设置下tag号 然后推送到git 


$ git commit -m 

$ git tag 0.0.1 // tag 和上面你设定的一样 一般tag号和版本号一致

$ git push --tags

$ git push origin master 

我们来验证下他是否符合要求。 

$  pod lib lint "podspec名字".podspec --allow-warnings

 若我们看  xxxx.podspec  passed validation 说明这个配置文件是没问题的。若失败了。我们就需要将远程tag删除 重新来过删除tag

  //查看tag

$  git tag 

 //删除一个指定的tag,并上传一个空tag到远程tag 

$  git tag -dgit push origin :refs/tags/你的tag号

在验证通过之后我们需要将代码提交到cocopods

$  pod trunk push "你的podspec名字".podspec --allow-warnings


如果没有出错 我们就算大功告成了.

iOS发布自己的开源库到cocopods_第2张图片

通过pod search "项目名"去搜索你的第三方库吧。。

如果没有搜到,可以先清理一下pod缓存

rm ~/Library/Caches/CocoaPods/search_index.json

---------------------------------------------------------------------------------

报错

[!] Authentication token is invalid or unverified. Either verify it with the email that was sent or register a new session.

*pod trunk push 会有权限校验。请先使用

$ pod trunk register [email protected](github邮箱)

然后去邮箱里点击链接再推送。


[!] The validator for Swift projects uses Swift 3.0 by default, if you are using a different version of swift you can use a `.swift-version` file to set the version for your Pod. For example to use Swift 2.3, run:    `echo "2.3" > .swift-version`.

使用命令

$ echo "2.3" > .swift-version

你可能感兴趣的:(iOS发布自己的开源库到cocopods)