cocoapods私有化组件

随着iOS APP越来越复杂,功能越来越多,对于iOS项目的工程化要求也越来越高了,对于复杂的APP一般都需要对项目进行模块化管理。但是对于公司的项目,全都放到cocoapods公开组件也并不安全,而且有些组件是不能够放到公开组件上的,所以就有了私有化组件的需求。
今天给大家带来超级详细的使用cocoapods进行私有化组件的方案。

1.podspec文件的详细说明:
Pod::Spec.new do |s|
# 项目的名称
s.name = 'DownLoader'
# 项目的版本号,通过项目git的tag标签进行对应,这里的标签代表的版本
s.version = '0.1.1'
# 项目简单的描述信息
s.summary = '简单的下载器##0.1.1'
# 项目的详细描述信息,注意,这里的文字的长度,一定要比上面的s.summary长,不然会认为格式不合格
s.description = <<-DESC
简单的下载器,支持断点下载
DESC
# 项目的网页主页信息,这里可以直接写自己的远程仓库的主页的地址
s.homepage = 'https://coding.net/u/WANG19931123/p/DownLoader'
# 截图
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
# 开源协议
s.license = { :type => 'MIT', :file => 'LICENSE' }
# 作者信息
s.author = { '[aliyunzixun@xxx.com](https://www.aliyun.com/jiaocheng/356960.html)' => '[aliyunzixun@xxx.com](https://www.aliyun.com/jiaocheng/356960.html)' }
# 这个比较重要,指的就是git的对应的远程仓库的地址以及版本号,版本号直接获取的是上面的s.version
# 项目地址,这里不支持ssh的地址,验证不通过,只支持HTTP和HTTPS,最好使用HTTPS
s.source = { :git => 'https://WANG19931123:[aliyunzixun@xxx.com](https://www.aliyun.com/jiaocheng/356960.html)/WANG19931123/DownLoader.git', :tag => s.version.to_s }
# 多媒体介绍地址
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
# 支持的平台及版本
s.ios.deployment_target = '8.0'
# 代码源文件地址,**/*表示Classes目录及其子目录下所有文件,如果有多个目录下则用逗号分开,如果需要在项目中分组显示,这里也要做相应的设置
# s.source_files = 'DownLoader/Classes/**/*'
s.subspec 'Category' do |category|
category.source_files = 'DownLoader/Classes/Category/**/*'
category.dependency 'AFNetworking', '~> 3.0'
end
s.subspec 'DownLoader' do |downLoader|
downLoader.source_files = 'DownLoader/Classes/DownLoader/**/*'
end
# 资源文件地址
# s.resource_bundles = {
# 'DownLoader' => ['DownLoader/Assets/*.png']
# }
# 公开头文件地址
# s.public_header_files = 'Pod/Classes/**/*.h'
# 所需的framework,多个用逗号隔开
s.frameworks = 'UIKit'
# 依赖关系,该项目所依赖的其他,当在加载的时候也会一块把相关的依赖的库加载下来,如果有多个需要填写多个
# s.dependency 'AFNetworking', '~> 2.3'
# 是否使用ARC,如果指定具体文件,则具体的问题使用ARC
s.requires_arc = true
end

三方库的目录表specs:终端输入cd ~/.cocoapods/repos/master可看到里面放的都是一个个的podspec文件大小仅仅为几KB,是三方库的索引文件。
私有库目录表的远程仓库:是目录表文件的远程存放地址。
私有库的远程仓库:这是我们自己写的想作为一个组件的代码。

2.创建远程仓库(用于存放组件库的索引和组件代码)

2.1首先创建一个索引库HPLibRepo


2.2然后创建一个存放组件的库HPLibTool

2.3把组件的代码clone到本地,因为你要把你的组件代码放到上面去

cd Desktop/
git clone https://git.coding.net/mahaiping/HPLibTool.git

2.4拷贝代码到你的组件库里,我这里为了目录清晰,放了一个Classes文件夹,因为比如你有很多个子文件夹,这里可以进行区分



2.5 创建pod描述文件,让组件代码具有被cocoapod管理的能

cd到你的组件库的根目录
cd HPLibTool
pod spec create HPLibTool//这样就会在根目录生成一个HPLibTool.podspec文件

2.6 编辑podspec描述文件,主要就是讲清楚你这个私有库的地址和依赖关系等,下面是必须修改才能通过的地方

s.platform     = :ios, "9.0"
s.source       = { :git => "https://git.coding.net/mahaiping/HPLibTool.git", :tag => "#{s.version}" }
s.source_files  = "Date", "Tool"
s.description  = "ssss"
s.homepage     = "https://git.coding.net/mahaiping/HPLibTool.git"

2.7 设置完了以后,在终端中验证下HPLibTool这个项目是否真的具有了被cocoapod管理的能力,注意要添加allow-warning才可以通过。

pod lib lint --verbose --allow-warnings

2.8 给组件库打tag,并上传到git服务器,注意还是在HPLibTool代码的目录下执行一下命令

git add .
git commit -m "添加了Date和Tool代码"
git tag -a 0.0.1 -m "添加0.0.1tag"
git push origin --tags
git push
pod trunk push xxx.podspec --allow-warnings
pod trunk delete xxx 1.0.1 删除pod

所有以上操作全是在操作组件化代码,操作的目录也都是在HPLibTool这个项目的目录下。接着开始整项目索引文件

3.索引文件

3.1把远程repo--也就是库的索引文件(最后要通过这个找到你制作的组件)复制到本地pod管理目录文件夹中

pod repo add HPLibRepo  https://git.coding.net/mahaiping/HPLibRepo.git
cd ~/.cocoapods/repos/
open .
这时系统中.cocoapod的本地文件夹就出现了我们自己的项目索引文件HPLibRepo文件

3.2一句代码添加刚才验证好的podsec到本地这个文件夹并且上传到远程目录管理服务器

注意这个时候必须回到HPLibTool这个具体项目的目录下来执行
cd /HPLibTool 
pod repo push HPLibRepo HPLibTool.podspec --verbose --allow-warnings
  • 必须回到HPLibTool具体项目的目录下
  • 虽然是git上传但口令是pod repo push,不是git push
  • HPLibRepo写的是项目索引的名称,不是项目名称
  • HPLibTool.podspec 是具体项目的描述文件podspec,就是刚才验证 通过的文件
  • 要加--allow-warnings 因为我们的描述文件有些不规范的地方

4.尝试集成一下我们自己的组件

4.1创建一个demo项目来用用吧
xcode创建一个demo名称的工程,退出
cd /demo
pod init
pod search HPLibTool
4.2搜索自己的私有库
终端中搜索到自己的私有库,这一步就很有成就感了,bingo!


这时编辑demo项目中多出的podfile文件,如下

4.3 编辑podfile
特别注意要添加两个源,并且使用use_frameworks

source 'https://github.com/CocoaPods/Specs.git'
source 'https://git.coding.net/mahaiping/HPLibRepo.git'
#以上两个就是所谓的两个源

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'podDemo' do
  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

  # Pods for podDemo
  pod 'HPLibTool', '~> 0.0.7'

end

4.4最后的安装组件
终于到最后一步安装了

pod install

最后贴出来我自己的组件化的podspec

#
#  Be sure to run `pod spec lint HPLibTool.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         = "HPLibTool"
  s.version      = "0.0.7"
  s.summary      = "A short description of HPLibTool."

  # 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  = "ssss"

  s.homepage     = "https://git.coding.net/mahaiping/HPLibTool.git"
  # 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             = { "SmallwolfiOS" => "1348748408@qq.com" }
  # Or just: s.author    = "SmallwolfiOS"
  # s.authors            = { "SmallwolfiOS" => "1348748408@qq.com" }
  # s.social_media_url   = "http://twitter.com/SmallwolfiOS"

  # ――― 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 , "9.0"
  # s.platform     = :ios, "5.0"

  #  When using multiple platforms
  # s.ios.deployment_target = "5.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://git.coding.net/mahaiping/HPLibTool.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 = "Classes/Header.h"
  # s.public_header_files = "/HPLibTool/Classes/Header.h"

  s.subspec 'Tool' do |tool|
      tool.source_files = "Classes/Tool/*.{h,m}"
      # Tool.public_header_files =  "Classes/FCCache/*.h"
  end
  s.subspec 'Date' do |date|
      date.source_files = "Classes/Date/*.{h,m}"
      # Tool.public_header_files =  "Classes/FCCache/*.h"
  end
  # s.source_files  = "Tool"
  # , "Classes/**/*.{h,m}"
  # s.exclude_files = "Classes/Exclude"

  


  # ――― 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 "JSONKit", "~> 1.4"

end

以及集成之后的目录结构


pod trunk register 出现如下错误:

[!] There was an error registering with trunk: Failed to open TCP connection to trunk.cocoapods.org:443 (getaddrinfo: nodename nor servname provided, or not known)

修改你的DNS为114.114.114.114

希望对大家有所帮助
https://segmentfault.com/a/1190000012269307
https://www.jianshu.com/p/ea2a972a7b4b
https://www.cnblogs.com/wdsunny/p/5187528.html

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

推荐阅读更多精彩内容