创建私有podspec

创建私有podspec

1.创建私有Spec Repo

cd ~/.cocoapods/repos
pod repo add UnfaeSpecs http://git.com/scm/ap/jql-ios-cocoaspecs.git

执行完上面步骤后,在~/.cocoapods/repos目录下会多出一个UnfaeSpecs目录,说明我们创建私有Spec Repo完成。

2.创建Pod项目工程文件

首先,cd到要创建项目的目录,然后执行

➜ ~ cd ~/developments/ios/unfae
➜ jingql pod lib create TestRepo

Cloning 'https://github.com/CocoaPods/pod-template.git' into 'TestRepo'.
Configuring TestRepo template.


To get you started we need to ask a few questions, this should only take a minute.
If this is your first time we recommend running through with the guide:

What language do you want to use?? [ ObjC / Swift ]
ObjC
Would you like to include a demo application with your library? [ Yes / No ]
Yes
Which testing frameworks will you use? [ Specta / Kiwi / None ]
Specta
Would you like to do view based testing? [ Yes / No ]
Yes
What is your class prefix?
JLS
Running pod install on your new library.
Updating local specs repositories
CocoaPods 1.0.0.beta.6 is available.
To update use: 'gem install cocoapods --pre'
[!] This is a test version we'd love you to try.
For more information see http://blog.cocoapods.org
and the CHANGELOG for this version http://git.io/BaH8pQ.
Analyzing dependencies
Fetching podspec for 'TestRepo' from '../'
Downloading dependencies
Installing Expecta (1.0.5)
Installing Expecta+Snapshots (2.0.0)
Installing FBSnapshotTestCase (2.0.7)
Installing Specta (1.0.5)
Installing TestRepo (0.1.0)
Generating Pods project
Integrating client project
[!] Please close any current Xcode sessions and use 'TestRepo.xcworkspace' for this project from now on.
Sending stats
Sending stats
Pod installation complete! There are 5 dependencies from the Podfile and 5 total pods installed.
Ace! you're ready to go!
We will start you off by opening your project in Xcode
open 'TestRepo/Example/TestRepo.xcworkspace'
To learn more about the template see 'https://github.com/CocoaPods/pod-template.git'.
To learn more about creating a new pod, see 'http://guides.cocoapods.org/making/making-a-cocoapod'.

3.添加库文件

执行完上面操作后

➜ unfae cd TestRepo
➜ TestRepo git:(master) ✗ tree -L 2
.
├── Example
│ ├── Podfile
│ ├── Podfile.lock
│ ├── Pods
│ ├── TestRepo
│ ├── TestRepo.xcodeproj
│ ├── TestRepo.xcworkspace
│ └── Tests
├── LICENSE
├── Pod
│ ├── Assets
│ └── Classes
├── README.md
├── TestRepo.podspec
└── _Pods.xcodeproj -> Example/Pods/Pods.xcodeproj
10 directories, 5 files

此时,用xcode打开TestRepo.xcworkspace文件,我们会看到刚添加的组件已经在Pods子工程下Development Pods/TestRepo中了,接下来我们要做的就是编辑Example工程,测试我们的组件是否OK。如果在测试的时候发现问题,那么我们每次向Pod中新添加了文件或更新了podspec版本,都要重新执行一遍pod update命令。
没问题后,我们将项目推送到远端,并打上tag

➜ Example git:(master) ✗ ..
➜ TestRepo git:(master) ✗ git add .
➜ TestRepo git:(master) ✗ git commit -m 'Initial Commit'
➜ TestRepo git:(master) git remote add origin http://git.ippjr-inc.com/scm/ap/jls-ios-testrepo.git
➜ TestRepo git:(master) git push origin master
➜ TestRepo git:(master) git tag -m "first releast" "0.1.0"
➜ TestRepo git:(master) git push --tags

4.编辑podspec文件

➜ TestRepo git:(master) vi TestRepo.podspec

  #
  # Be sure to run `pod lib lint TestRepo.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 http://guides.cocoapods.org/syntax/podspec.html
  #
Pod::Spec.new do |s|
 s.name             = "TestRepo"
 s.version          = "0.1.0"
 s.summary          = "这里是简单介绍"
  # 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
                      这里是项目描述
                      DESC
 s.homepage         = "http://git.com/projects/AP/repos/jql-ios-testrepo/browse"
 # s.screenshots     = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
 s.license          = 'MIT'
 s.author           = { "JingQL" => "JingQL_min@163com" }
 s.source           = { :git => "http://git.com/scm/ap/jql-ios-testrepo.git", :tag => "0.1.0" }
 # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
 s.platform     = :ios, '7.0'
 s.requires_arc = true
 s.source_files = 'Pod/Classes/**/*'
 s.resource_bundles = {
   'TestRepo' => ['Pod/Assets/*.png']
 }
 # s.public_header_files = 'Pod/Classes/**/*.h'
 # s.frameworks = 'UIKit', 'MapKit'
 # s.dependency 'AFNetworking', '~> 2.3'
end

接下来验证一下是否可用

➜ TestRepo git:(master) ✗ pod lib lint
-> TestRepo (0.1.0)
TestRepo passed validation.

5.向Spec Repo提交podspec

pod repo push JingQLSpecs TestRepo.podspec

其中,JingQLSpecs是我们的私有Spec Repo,上面命令执行成功后,这个组件就添加到我们的私有Spec Repo中了,同时远端仓库也添加了这个podspec

➜ JingQLSpecs git:(master) ll
total 0
drwxr-xr-x 3 xiaoz staff 102B 3 18 11:55 TestRepo

➜ ~ pod search TestRepo
-> TestRepo (0.1.0)
这里是简单介绍
pod 'TestRepo', '~> 0.1.0'

6.使用

在项目的Podfile里增加如下一行代码

pod 'TestRepo', '~> 0.1.0'

然后执行pod update

7.维护podspec

➜ git tag -a 0.1.1 -m '0.1.1'
➜ git push origin --tags
➜ vi JQLGesturesView.podspec

修改版本号s.version = '0.1.1',修改tag => '0.1.1'

➜ git add .
➜ git ci -m '..'
➜ git ps

接下来验证一下是否可用

➜ TestRepo git:(master) ✗ pod lib lint
-> TestRepo (0.1.1)
TestRepo passed validation.

就可以

➜ pod repo push JingQLSpecs JQLGesturesView.podspec

8.删除podspec

如果删掉整个私有Spec Repo

pod repo remove JingQLSpecs
但这只是本地删除,我们还可以找回
pod repo add JingQLSpecs http://git.com/scm/ap/jql-ios-cocoaspecs.git

删除某个Spec Repo

➜ ~ cd ~/.cocoapods/repos/JingQLSpecs
➜ JingQLSpecs git:(master) ll
total 0
drwxr-xr-x 3 xiaoz staff 102B 3 18 11:55 TestRepo

然后删掉库目录,之后将变动push到远程即可。

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

推荐阅读更多精彩内容