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,如图
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之前的,所以得到的回复是
下面我会贴出来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。
附: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