CocoaPods 创建私有库

创建私有Spec Repo

先建立一个私有git仓库,用来存放podspec。我是建在码云上。

然后在终端执行命令:

$ pod repo add FCPrivateRepo https://gitee.com/sergeant/fcprivate-repo.git

执行成功后,可以在~/.cocoapods/repos目录下看到FCPrivateRepo文件夹。

也可以在终端执行命令查看所有的repo:

$ pod repo

FCPrivateRepo
- Type: git (master)
- URL:  https://gitee.com/sergeant/fcprivate-repo.git
- Path: /Users/zhijiazhong/.cocoapods/repos/FCPrivateRepo

master
- Type: git (master)
- URL:  https://github.com/CocoaPods/Specs.git
- Path: /Users/zhijiazhong/.cocoapods/repos/master

trunk
- Type: CDN
- URL:  https://cdn.cocoapods.org/
- Path: /Users/zhijiazhong/.cocoapods/repos/trunk

3 repos

创建私有组件

我下面新建一个项目FCPrivateComponentA:

$ pod lib create FCPrivateComponentA

执行过程中会问以下问题,按需回答即可:

What platform do you want to use?? [ iOS / macOS ]
 > ios

What language do you want to use?? [ Swift / ObjC ]
 > objc

Would you like to include a demo application with your library? [ Yes / No ]
 > yes

Which testing frameworks will you use? [ Specta / Kiwi / None ]
 > none

Would you like to do view based testing? [ Yes / No ]
 > no

What is your class prefix?
 > FC

完成之后就可以添加组件代码了,加在FCPrivateComponentA/Classes目录下。

然后我们需要再创建一个私有仓库存放这个组件:

https://gitee.com/sergeant/fcprivate-component-a.git

之后我们就可以编辑podspec文件了。

至少需要修改以下4个字段:

- s.summary                 # 简介
- s.description             # 详细描述,要比简介长
- s.homepage                # 主页
- s.source                  # 仓库地址

编辑完如下:

#
# Be sure to run `pod lib lint FCPrivateComponentA.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |s|
  s.name             = 'FCPrivateComponentA'
  s.version          = '0.1.0'
  s.summary          = 'A private pod for test.'

# 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
A private pod which show a view controller with red background.
                       DESC

  s.homepage         = 'https://gitee.com/sergeant/fcprivate-component-a'
  # s.screenshots     = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
  s.license          = { :type => 'MIT', :file => 'LICENSE' }
  s.author           = { 'Finger Chung' => '260910416@qq.com' }
  s.source           = { :git => 'https://gitee.com/sergeant/fcprivate-component-a.git', :tag => s.version.to_s }
  # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

  s.ios.deployment_target = '8.0'

  s.source_files = 'FCPrivateComponentB/Classes/**/*'
  
  # s.resource_bundles = {
  #   'FCPrivateComponentB' => ['FCPrivateComponentB/Assets/*.png']
  # }

  # s.public_header_files = 'Pod/Classes/**/*.h'
  # s.frameworks = 'UIKit', 'MapKit'
  # s.dependency 'AFNetworking', '~> 2.3'
end

然后我们就可以提交代码了。先在.gitignore文件中忽略Pod/文件夹和.xcworkspace文件。
然后执行命令:

$ git add .
$ git commit -s -m "Initial Commit of Library"
$ git remote add origin https://gitee.com/sergeant/fcprivate-component-a.git           #添加远端仓库
$ git push origin master     #提交到远端仓库

因为podspec文件中获取Git版本控制的项目还需要tag号,所以我们要打上一个tag:

$ git tag -m "first release" 0.1.0
$ git push --tags     #推送tag到远端仓库

做完上面的工作,私有组件就做好了,但是我们要验证一下是否可用。使用命令:

pod lib lint

执行后可能出现警告导致验证不通过:

$ pod lib lint

 -> FCPrivateComponentA (0.1.0)
    - WARN  | url: The URL (https://gitee.com/sergeant/fcprivate-component-a) is not reachable.

如果跟我一样提示主页不可访问,可能是因为我们使用的是私有库,直接忽略就好:

$ pod lib lint --allow-warnings

 -> FCPrivateComponentA (0.1.0)
    - WARN  | url: The URL (https://gitee.com/sergeant/fcprivate-component-a) is not reachable.
    - NOTE  | xcodebuild:  note: Using new build system
    - NOTE  | [iOS] xcodebuild:  note: Planning build
    - NOTE  | [iOS] xcodebuild:  note: Constructing build description
    - NOTE  | [iOS] xcodebuild:  warning: Skipping code signing because the target does not have an Info.plist file and one is not being generated automatically. (in target 'App' from project 'App')
    - NOTE  | [iOS] xcodebuild:  note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'FCPrivateComponentA' from project 'Pods')
    - NOTE  | [iOS] xcodebuild:  note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'Pods-App' from project 'Pods')
    - NOTE  | [iOS] xcodebuild:  note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'App' from project 'App')

FCPrivateComponentA passed validation.

这样就验证通过了。

如果是其他警告,则需要一一修改。一般都是podspec文件不规范导致的。
比如我一开始没有修改s.summary,第二次s.description比s.summary短,都被警告了。

验证通过后,就可以尝试使用了。

本地测试

先在本地测试下组件是否可用。

新建一个工程。cd到工程根目录,然后使用命令 pod init 生成Podfile。

使用本地路径导入FCPrivateComponentA:

pod 'FCPrivateComponentA', :path => '../FCPrivateComponentA'

path 既可以使用相对路径,也可以使用绝对路径。

还可以用podsepc文件的路径:

pod 'FCPrivateComponentA', :podspec => '../FCPrivateComponentA/FCPrivateComponentA.podspec'

然后执行 pod install 安装。

$ pod install
Analyzing dependencies
Fetching podspec for `FCPrivateComponentA` from `../FCPrivateComponentA/FCPrivateComponentA.podspec`
Downloading dependencies
Installing FCPrivateComponentA (0.1.0)
Generating Pods project
Integrating client project
Pod installation complete! There is 1 dependency from the Podfile and 1 total pod installed.

打开项目工程,可以看到库文件都被加载到Pods子项目中了,不过它们并没有在Pods目录下,而是跟测试项目一样存在于Development Pods/FCPrivateComponentA,这是因为我们是在本地测试,而没有把podspec文件添加到Spec Repo中的缘故。

添加到Spec Repo

现在,我们最开始创建的Spec Repo派上用场了。

只需要一个命令即可:

$ pod repo push FCPrivateRepo FCPrivateComponentA.podspec  #前面是本地Repo名字 后面是podspec名字

执行完后,我们可以在~/.cocoapods/repos/FCPrivateRepo目录下看到FCPrivateComponentA。

同样,在FCPrivateRepo的远程仓库也可以看到FCPrivateComponentA.podspec被提交上去。

我们也可以搜索到这个组件:

$ pod search FCPrivateComponentA

-> FCPrivateComponentA (0.1.0)
   A private pod for test.
   pod 'FCPrivateComponentA', '~> 0.1.0'
   - Homepage: https://gitee.com/sergeant/fcprivate-component-a
   - Source:   https://gitee.com/sergeant/fcprivate-component-a.git
   - Versions: 0.1.0 [FCPrivateRepo repo]

到这里组件就制作完成了。

正式使用

重新打开Podfile,将本地测试时指定的本地路径去掉:

pod 'FCPrivateComponentA'

还需要在头部加上我们的私有Spec Repo地址,注意不要写成了私有组件的仓库:

source 'https://gitee.com/sergeant/fcprivate-repo.git'

完整的Podfile:

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

# 这里是私有索引库的地址
# 而不是私有组件的地址 https://gitee.com/sergeant/fcprivate-component-a.git
source 'https://gitee.com/sergeant/fcprivate-repo.git'

target 'TestPrivatePod' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  # Pods for TestPrivatePod
  pod 'FCPrivateComponentA'

end

执行 pod update:

$ pod update
Update all pods
Updating local specs repositories
  $ /usr/bin/git -C /Users/sergeant/.cocoapods/repos/FCPrivateRepo fetch
  origin --progress
  $ /usr/bin/git -C /Users/sergeant/.cocoapods/repos/FCPrivateRepo rev-parse
  --abbrev-ref HEAD
  master
  $ /usr/bin/git -C /Users/sergeant/.cocoapods/repos/FCPrivateRepo reset
  --hard origin/master
  HEAD is now at 4941c37 [Add] FCPrivateComponentA (0.1.0)
Analyzing dependencies
Downloading dependencies
Installing FCPrivateComponentA 0.1.0
Generating Pods project
Integrating client project
Pod installation complete! There is 1 dependency from the Podfile and 1 total pod installed.

如有项目组的其他人需要使用,需要给他对应私有库的权限,然后也执行命令:

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