CocoaPods創(chuàng)建私有Pod庫(kù)方法

好記性不如爛筆頭枚驻,今天記錄一下CocoaPods創(chuàng)建私有Pod庫(kù)方法,以碼云作為第三方私有倉(cāng)庫(kù)為例疤估。
1霎冯、創(chuàng)建一個(gè)git倉(cāng)庫(kù)用來(lái)做內(nèi)部私有庫(kù)的Spec Repo钞瀑,命名為Pods(自己喜歡怎么命名都可以),如下圖:


image.png

注意:一定要勾選為私有

2缠俺、打開(kāi)終端執(zhí)行以下代碼(因?yàn)楝F(xiàn)在創(chuàng)建的是一個(gè)空倉(cāng)庫(kù)贷岸,執(zhí)行以下命令是為了創(chuàng)建README.md):

mkdir Pods
cd Pods
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/xxxx/Pods.git
git push -u origin master

注意:其中https://gitee.com/xxxx/Pods.git就是這個(gè)倉(cāng)庫(kù)的地址

當(dāng)執(zhí)行完畢以上的命令以后偿警,回到倉(cāng)庫(kù)頁(yè)面刷新,你會(huì)看到以下頁(yè)面盒使,說(shuō)明成功創(chuàng)建README.md并上傳到了git倉(cāng)庫(kù)了。


image.png

到這一步少办,存儲(chǔ)內(nèi)部私有庫(kù)的Spec Repo的git倉(cāng)庫(kù)就算建立完畢了英妓。

下面開(kāi)始創(chuàng)建真正的私有庫(kù)。
1蔓纠、首先在第三方git的倉(cāng)庫(kù),命名為SLKit航闺,步驟跟上面的1和2一樣的猴誊。
執(zhí)行完以上的步驟,然后把項(xiàng)目拉下來(lái)本地乖杠,然后在本地進(jìn)行開(kāi)發(fā)澄成。
我在工程目錄下創(chuàng)建了SLKit文件夾,在這個(gè)文件夾下創(chuàng)建了NSString+HDDmd5.h和NSString+HDDmd5.m文件卫漫,如下圖:


image.png

編輯完成以后肾砂,在終端執(zhí)行以下命令把代碼提交到遠(yuǎn)程倉(cāng)庫(kù):

cd 到目標(biāo)文件
git add -A
git commit -m "增加NSString+HDDmd5.h和NSString+HDDmd5.m文件"
git push origin master

2、可以通過(guò)如下代碼創(chuàng)建podspec文件

pod spec create SLKit

3包吝、用Xcode 打開(kāi)SLKit.podspec文件進(jìn)行編輯


image.png

編輯SLKit.podspec文件

#
#  Be sure to run `pod spec lint SLKit.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    https://guides.cocoapods.org/syntax/podspec.html
#  To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#

Pod::Spec.new do |spec|

# ―――  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.
#

#項(xiàng)目名稱
spec.name         = "SLKit"
#項(xiàng)目版本號(hào)
spec.version      = "1.0.0"
#項(xiàng)目的描述
spec.summary      = "SLKit私有庫(kù)."

# 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!

# 項(xiàng)目的描述
spec.description  = <<-DESC
SLKit私有庫(kù)
               DESC

#項(xiàng)目的主頁(yè)
spec.homepage     = "https://gitee.com/snailLi"
# spec.screenshots  = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"


# ―――  Spec License  ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
#  Licensing your code is important. See https://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'.
#

# 驗(yàn)證許可證
spec.license      = "MIT"
# spec.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.
#

#作者
spec.author             = { "xxxxx" => "xxxxxxx@qq.com" }
# Or just: spec.author    = "xxxxx"
# spec.authors            = { "xxxxxx" => "xxxxxxx@qq.com" }
# spec.social_media_url   = "https://xxxxxx"

# ――― 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.
#

# 適配的系統(tǒng)
spec.platform     = :iOS
#適配系統(tǒng)的最低版本
spec.platform     = :ios, "10.0"

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


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

#項(xiàng)目git倉(cāng)庫(kù)的地址
spec.source       = { :git => "https://gitee.com/snailLi/SLKit.git", :tag => "#{spec.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.
#

#pod時(shí)需要集成的文件  一定要加上swift  不然報(bào)錯(cuò)
spec.source_files  = "SLKit/SLKit/*.{h,m,swift}"
spec.exclude_files = "Classes/Exclude"

# spec.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.
#

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

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


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

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

# spec.library   = "iconv"
# spec.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.

#是否要求arc(有部分非arc文件情況未考證)
spec.requires_arc = true

# spec.xcconfig = { "HEADER_SEARCH_PATHS" =>   "$(SDKROOT)/usr/include/libxml2" }
# spec.dependency "JSONKit", "~> 1.4"

end

.podspec文件具體簡(jiǎn)介可以參考這邊文章 http://www.reibang.com/p/5ca47f960379

4嚷狞、本地驗(yàn)證.podspec文件,打開(kāi)終端執(zhí)行以下命令:

pod lib lint SLKit.podspec --allow-warnings

如果看到 SLKit passed validation. 說(shuō)明本地楊崢通過(guò)了

5感耙、提交.podspec文件到遠(yuǎn)程git倉(cāng)庫(kù)并打標(biāo)簽,執(zhí)行以下命令:

 git add -A && git commit -m "version 1.0.0"
 git tag '1.0.0'    //和上面.podspec一致
 git push --tags
 git push origin master

6逃片、提交完畢以后只酥,執(zhí)行以下命令進(jìn)行遠(yuǎn)程驗(yàn)證.podspec文件

pod spec lint SLKit.podspec --allow-warnings

如果出現(xiàn)了SLKit.podspec passed validation. 說(shuō)明遠(yuǎn)程驗(yàn)證成功了

7、執(zhí)行以下命令將Pods添加到本地repo

pod repo add Pods https://gitee.com/snailLi/Pods.git

添加成功后可以在/.cocoapods/repos/目錄下可以看到官方的specs:master和剛剛加入的specs:Pods

8损离、執(zhí)行以下命令绝编,將SLKit加入私有Sepc repo中

pod repo push Pods SLKit.podspec --allow-warnings

出現(xiàn)如下圖說(shuō)明添加成功了


image.png

新建工程驗(yàn)證是否可以正確pod下來(lái)

Podfile文件填寫(xiě)如下:


image.png

成功pod下來(lái)SLKit


image.png

至此十饥,簡(jiǎn)單的CocoaPods創(chuàng)建私有Pod庫(kù)就制作完畢了

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市秉氧,隨后出現(xiàn)的幾起案子蜒秤,更是在濱河造成了極大的恐慌,老刑警劉巖作媚,帶你破解...
    沈念sama閱讀 210,978評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件纸泡,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡弟灼,警方通過(guò)查閱死者的電腦和手機(jī)冒黑,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門抡爹,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人,你說(shuō)我怎么就攤上這事民逼′塘保” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,623評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵疮鲫,是天一觀的道長(zhǎng)弦叶。 經(jīng)常有香客問(wèn)我俊犯,道長(zhǎng)伤哺,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,324評(píng)論 1 282
  • 正文 為了忘掉前任绢彤,我火速辦了婚禮桃序,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘奇适。我一直安慰自己芦鳍,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,390評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布皮仁。 她就那樣靜靜地躺著,像睡著了一般贷祈。 火紅的嫁衣襯著肌膚如雪喝峦。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,741評(píng)論 1 289
  • 那天粟耻,我揣著相機(jī)與錄音查近,去河邊找鬼挤忙。 笑死,一個(gè)胖子當(dāng)著我的面吹牛戈泼,可吹牛的內(nèi)容都是我干的茄厘。 我是一名探鬼主播,決...
    沈念sama閱讀 38,892評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼胎署,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼窑滞!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起哀卫,我...
    開(kāi)封第一講書(shū)人閱讀 37,655評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤此改,失蹤者是張志新(化名)和其女友劉穎趾撵,沒(méi)想到半個(gè)月后共啃,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,104評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡究珊,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評(píng)論 2 325
  • 正文 我和宋清朗相戀三年剿涮,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了攻人。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,569評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡怀吻,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出瑟蜈,到底是詐尸還是另有隱情渣窜,我是刑警寧澤,帶...
    沈念sama閱讀 34,254評(píng)論 4 328
  • 正文 年R本政府宣布位迂,位于F島的核電站,受9級(jí)特大地震影響掂林,放射性物質(zhì)發(fā)生泄漏坝橡。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,834評(píng)論 3 312
  • 文/蒙蒙 一锣杂、第九天 我趴在偏房一處隱蔽的房頂上張望番宁。 院中可真熱鬧元莫,春花似錦蝶押、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,725評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至招刨,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間打却,已是汗流浹背谎倔。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,950評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留片习,地道東北人蹬叭。 一個(gè)月前我還...
    沈念sama閱讀 46,260評(píng)論 2 360
  • 正文 我出身青樓秽五,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親坦喘。 傳聞我的和親對(duì)象是個(gè)殘疾皇子西设,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,446評(píng)論 2 348