将自己的代码发布到CocoaPods上

1,CocoaPods的简单介绍以及使用

我这篇文章主要介绍如何将项目发布到CocoaPods上,安装以及简单实用我介绍几个博客给大家。其中如果你遇到问题还是可以看下面的评论,如果实在不行stackoverflow一定能够帮你解决。

首先是安装以及简单使用的博客:http://www.jianshu.com/p/f5536485e3a0
其次是更新的博客:http://www.jianshu.com/p/f5536485e3a0

最后我贴上我这个工程写的的pod文件

source 'https://git.coding.net/hging/Specs.git'
platform :ios, '8.0'

inhibit_all_warnings!
target 'LLToast’ do

pod 'pop', '~> 1.0'

end

2,将自己的代码发布到CocoaPods上

2.1 创建自己的github仓库

CocoaPods都托管在github上(官方链接),所有的Pods依赖库都依赖github,因此我们需要创建一个github,如图

创建github repository

2.2将仓库clone到本地

git clone https://github.com/lilianmao/LLToast

2.3向git仓库添加创建Pods依赖库的所有文件

2.3.1本地仓库更新

首先将自己写的框架复制到你创建的本地仓库里,这里我直接赋值粘贴了,这里大家最好如下图放置,因为这样可以方便别人看懂你的项目,一个license,一个readme,一个你的podspec文件(这个文件的生成我在后面会讲的),一个项目的demo,另一个是你的框架。


文件夹目录

2.3.2创建podspec文件,并且重写这个文件

创建这个文件

pod spec create LLToast  

修改podspec文件

#
#  Be sure to run `pod spec lint LLToast.podspec' to ensure this is a
#  valid spec and to remove all comments including this before submitting the spec.
#
#  To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
#  To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#

Pod::Spec.new do |s|

  # ―――  Spec Metadata  ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  These will help people to find your library, and whilst it
  #  can feel like a chore to fill in it's definitely to your advantage. The
  #  summary should be tweet-length, and the description more in depth.
  #

  s.name         = "LLToast"
  s.version      = "1.0.0"
  s.summary      = "A simple LLToast."

  # This description is used to generate tags and improve search results.
  #   * Think: What does it do? Why did you write it? What is the focus?
  #   * Try to keep it short, snappy and to the point.
  #   * Write the description between the DESC delimiters below.
  #   * Finally, don't worry about the indent, CocoaPods strips it!
  s.description  = <<-DESC
                    This is a simple toast.
                    这是一个简单的toast
                   DESC

  s.homepage     = "https://github.com/lilianmao/LLToast"
  # s.screenshots  = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"


  # ―――  Spec License  ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  Licensing your code is important. See http://choosealicense.com for more info.
  #  CocoaPods will detect a license file if there is a named LICENSE*
  #  Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.
  #

  s.license      = "MIT"
  # s.license      = { :type => "MIT", :file => "FILE_LICENSE" }


  # ――― Author Metadata  ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  Specify the authors of the library, with email addresses. Email addresses
  #  of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
  #  accepts just a name if you'd rather not provide an email address.
  #
  #  Specify a social_media_url where others can refer to, for example a twitter
  #  profile URL.
  #

  s.author             = { "lilin" => "1911932429@qq.com" }
  # Or just: s.author    = "lilin"
  # s.authors            = { "lilin" => "1911932429@qq.com" }
  # s.social_media_url   = "http://twitter.com/lilin"

  # ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  If this Pod runs only on iOS or OS X, then specify the platform and
  #  the deployment target. You can optionally include the target after the platform.
  #

  # s.platform     = :ios
  s.platform       = :ios, '8.0'

  #  When using multiple platforms
  # s.ios.deployment_target = "8.0"
  # s.osx.deployment_target = "10.7"
  # s.watchos.deployment_target = "2.0"
  # s.tvos.deployment_target = "9.0"


  # ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  Specify the location from where the source should be retrieved.
  #  Supports git, hg, bzr, svn and HTTP.
  #

  s.source       = { :git => "https://github.com/lilianmao/LLToast.git", :tag => "#{s.version}" }


  # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  CocoaPods is smart about how it includes source code. For source files
  #  giving a folder will include any swift, h, m, mm, c & cpp files.
  #  For header files it will include any header in the folder.
  #  Not including the public_header_files will make all headers public.
  #

  s.source_files  = "LLToast/*"
  #  s.exclude_files = "LLToast/*"

  # s.public_header_files = "Classes/**/*.h"


  # ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  A list of resources included with the Pod. These are copied into the
  #  target bundle with a build phase script. Anything else will be cleaned.
  #  You can preserve files from being cleaned, please don't preserve
  #  non-essential files like tests, examples and documentation.
  #

  # s.resource  = "icon.png"
  # s.resources = "Resources/*.png"

  # s.preserve_paths = "FilesToSave", "MoreFilesToSave"


  # ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  Link your library with frameworks, or libraries. Libraries do not include
  #  the lib prefix of their name.
  #

  # s.framework  = "SomeFramework"
  # s.frameworks = "SomeFramework", "AnotherFramework"

  # s.library   = "iconv"
  # s.libraries = "iconv", "xml2"


  # ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  If your library depends on compiler flags you can set them in the xcconfig hash
  #  where they will only apply to your library. If you depend on other Podspecs
  #  you can include multiple dependencies to ensure it works.

  # s.requires_arc = true

  # s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
  s.dependency "pop", "~> 1.0"

end

这里我介绍几个要改的属性:

我先强调一下这个文件如果你需要该属性,必须去掉前面的#,不然是无效的,我被这个坑了好一会儿。(后来才知道这个ruby语言的注释)

s.version 一般情况下改为1.0.0
s.description 写一个对于你的框架代码的简单注释
s.homepage 写一个你项目对于的github主页
s.license 我写的是MIT(虽然我也没懂为啥写这个)
s.platform 我写的是8.0的系统,可以默认,但是你得保持对于你写的系统的兼容性。
s.source 这个必须指向你的github项目的地址
s.source_files 这里我已开始改错了,前面有个#,应该是注释的意思,你要把注释去掉,然后写上你的框架代码的位置,这里我是当前文件夹->LLToast下面的所有文件。
s.dependency 你这个框架依赖的库,我依赖了pop框架。

最后用一句代码检查你的pod有没有问题(第二句代码可以看到详细错误)

pod lib lint
pod lib lint --verbose --no-clean

如果你看到passed invalidation的话,就说明你大功告成了。

如果你出了这个问题:

Encountered an unknown error (/usr/bin/xcrun simctl list -j devices)

说明没有将Command Line Tools工具放到xcode中,详见https://stackoverflow.com/questions/29108172/xcrun-unable-to-find-simctl

2.3.3 提交修改文件到github上

1,pod验证

set the new version to 1.0.0
set the new tag to 1.0.0

2,将本地git仓库更新到远程的仓库

git add .
git commit -m "release 1.0.0"
git tag '1.0.0'
git push --tags
git push origin master

这里我还遇到一个错误,git仓库指向错误的仓库,这个google上有解答的,用git remote --v查看,然后git set_url,具体可以google一下。

2.4将podspec文件跟新到CocoaPods官方仓库

最后一步啦,小伙伴们,坚持一下。
2014年之前是需要向pod官方发pull request的,现在不要啦,我看的博客是2014之前的,所以得到的回复是

pod的官方回复

下面我会贴出来2014年之前的,大家可以了解一下过程,现在只需要几行代码就可以啦。下面是代码和成功的界面。

pod trunk push LLToast.podspec
成功的界面

如果大家遇到下面这个问题

Encountered an unknown error (/usr/bin/xcrun simctl list -j devices)

原因可能有很多种,我的原因是是xcode没有配置上Command Line Tools,详见https://stackoverflow.com/questions/29108172/xcrun-unable-to-find-simctl

xcode配置Command Line Tools

附:2014年如何更新pod到官方仓库

2.4.1 fork官方仓库并clone下来

fork一份CocoaPods官方的Specs仓库:传送门
然后clone下来

https://github.com/lilianmao/Specs

2.4.2 将自己的podspec文件夹放到spec并更新远程仓库

我的文件夹目录

然后更新远程仓库

git add. 
git commit -m "add Toast spec"
git push origin master

2.4.3 向官方发送pull request,等待通知。

3参考文章

https://guides.cocoapods.org/
http://blog.csdn.net/wzzvictory/article/details/20067595
http://www.jianshu.com/p/89605e02bf18

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容