一髓削、.podspec的一些說明
一個簡單示例:
Pod::Spec.new do |s|
s.name = 'RecordModule'
s.version = '0.1.0'
s.summary = '錄音組件'
s.description = <<-DESC
錄音組件
DESC
s.homepage = 'https://github.com/AncientMing/RecordModule'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'AncientMing' => 'chenyun@vkel.cn' }
s.source = { :svn => 'http://app-cheny@192.168.2.110:8088/svn/06-project/A-APP/0-code/%E4%BA%91%E5%9B%BE%E6%BC%AB%E6%AD%A5_Modularization_2018/RecordModule_yuntu', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.public_header_files = 'RecordModule/Classes/**/VKMessageHeader.h'
s.source_files = 'RecordModule/Classes/*'
s.resource_bundles = {
'RecordModule' => ['RecordModule/Assets/*.png']
}
s.dependency 'CYBasicsModule'
s.subspec 'FGRecordManage' do |ss|
ss.source_files = 'RecordModule/Classes/**/FGRecordManage/**/*'
end
end
在使用pod的過程中,需要用到.podspec文件葡兑,也就是配置文件
做個說明記錄奖蔓。
1、最外層讹堤,格式化樣板就好
Pod::Spec.new do |s|
end
2吆鹤、name
組件名稱
s.name = 'RecordModule'
3、version
組件版本
s.version = '0.1.0'
4洲守、summary
組件概要說明
s.summary = '錄音組件'
5檀头、description
組件詳細(xì)說明
s.description = <<-DESC
錄音組件
DESC
6、homepage
首頁岖沛,有的話把網(wǎng)址放出來暑始。
s.homepage = 'https://github.com/AncientMing/RecordModule'
7、license
協(xié)議婴削,MIT廊镜,隨便拷貝,隨便用
s.license = { :type => 'MIT', :file => 'LICENSE' }
示例2唉俗,指定許可文件的內(nèi)容
spec.license = { :type => 'MIT', :text => <<-LICENSE
Copyright 2012
Permission is granted to...
LICENSE
}
8嗤朴、author
作者信息
s.author = { 'AncientMing' => 'chenyun@vkel.cn' }
若果有多個作者,可以這樣寫
spec.authors = 'Darth Vader', 'Wookiee'
示例2
spec.authors = { 'Darth Vader' => 'darthvader@darkside.com',
'Wookiee' => 'wookiee@aggrrttaaggrrt.com' }
9、source
資源所在地,
示例1虫溜,svn地址
s.source = { :svn => 'http://app-cheny@192.168.2.110:8088/svn/06-project/A-APP/0-code/%E4%BA%91%E5%9B%BE%E6%BC%AB%E6%AD%A5_Modularization_2018/RecordModule_yuntu', :tag => s.version.to_s }
示例2雹姊,項目git地址,tag值與spec.verison版本一致
spec.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git',
:tag => spec.version.to_s }
示例3,項目git地址,tag值以v開頭,支持子模塊(子模塊是git的子模塊)
spec.source = { :git => 'https://github.com/typhoon-framework/Typhoon.git',
:tag => "v#{spec.version}", :submodules => true }
示例4衡楞,項目壓縮包地址
spec.source = { :http => 'http://dev.wechatapp.com/download/sdk/WeChat_SDK_iOS_en.zip' }
示例5吱雏,指定壓縮包地址,并校驗hash值,支持sha1 和 sha256
spec.source = { :http => 'http://dev.wechatapp.com/download/sdk/WeChat_SDK_iOS_en.zip',
:sha1 => '7e21857fe11a511f472cfd7cfa2d979bd7ab7d96' }
10、deployment_target
支持的版本
s.ios.deployment_target = '8.0'
11瘾境、public_header_files
公開的頭文件
s.public_header_files = 'RecordModule/Classes/**/VKMessageHeader.h'
12歧杏、source_files
資源文件
s.source_files = 'RecordModule/Classes/*'
13、resource_bundles
資源包迷守,一般圖片之類犬绒,這種方式資源文件會被以bundle的形式加入到項目中去,官方建議使用的方式,主要是防止與用戶的命名方式?jīng)_突
s.resource_bundles = {
'RecordModule' => ['RecordModule/Assets/*.png']
}
示例2
spec.ios.resource_bundle = { 'MapBox' => 'MapView/Map/Resources/*.png' }
多個路徑
spec.resource_bundles = {
'MapBox' => ['MapView/Map/Resources/*.png'],
'OtherResources' => ['MapView/Map/OtherResources/*.png']
}
資源文件另一種方式,這種比較常見
spec.resource = 'Resources/HockeySDK.bundle'
spec.resources = ['Images/*.png', 'Sounds/*']
14、dependency
依賴
s.dependency 'CYBasicsModule'
指定版本
spec.dependency 'AFNetworking', '~> 1.0'
15兑凿、subspec
子文件夾
s.subspec 'FMDB' do |ss|
ss.source_files = 'RecordModule/Classes/**/FMDB/**/*'
end
16凯力、vendored_libraries
依賴的第三方.a庫
ss.vendored_libraries = 'RecordModule/Classes/**/*.{a}'
17茵瘾、vendored_frameworks
依賴的第三方framework庫
ss.vendored_frameworks = 'MessageModule/Classes/**/*.{framework}'
18、frameworks
依賴的系統(tǒng)framework庫
s.frameworks = 'CoreLocation','QuartzCore'
19咐鹤、libraries
依賴的系統(tǒng)非framework庫
s.libraries = 'sqlite3.0'
20拗秘、screenshots
截屏圖
s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
單個截圖
spec.screenshot = 'http://dl.dropbox.com/u/378729/MBProgressHUD/1.png'
21、social_media_url
社交URL
s.social_media_url = 'https://twitter.com/AFNetworking'
22慷暂、requires_arc
是否ARC文件,默認(rèn)true,如果不是,會自動添加-fno-objc-arc compiler flag
是 ARC文件如下
ss.requires_arc = true
不是 ARC文件如下
ss.requires_arc = false
部分是ARC
spec.requires_arc = false
spec.requires_arc = 'Classes/Arc' //該文件夾下是ARC,其它非ARC
spec.requires_arc = ['Classes/*ARC.m', 'Classes/ARC.mm']
23、pch_AF
pch文件
pch_AF = <<-EOS
#ifndef TARGET_OS_IOS
#define TARGET_OS_IOS TARGET_OS_IPHONE
#endif
#ifndef TARGET_OS_WATCH
#define TARGET_OS_WATCH 0
#endif
#ifndef TARGET_OS_TV
#define TARGET_OS_TV 0
#endif
EOS
24晨雳、prefix_header_contents
類似于pch,文件,多個用逗號隔開
示例1
s.prefix_header_contents = pch_AF
示例2
spec.prefix_header_contents = '#import <UIKit/UIKit.h>', '#import <Foundation/Foundation.h>'
示例3
s.prefix_header_contents = <<-EOS
#ifdef __OBJC__
#import "SGExtension.h" //SGExtension包含了所有頭文件
#endif
EOS
end
示例4
spec.prefix_header_file = 'iphone/include/prefix.pch'
25行瑞、private_header_files
私有頭文件
spec.private_header_files = 'Headers/Private/*.h'
26、documentation_url
文檔說明
spec.documentation_url = 'http://www.example.com/docs.html'
27餐禁、prepare_command
在pod文件下載完畢之后,執(zhí)行的命令,原文如下
A bash script that will be executed after the Pod is downloaded. This command can be used to create, delete and modify any file downloaded and will be ran before any paths for other file attributes of the specification are collected.
This command is executed before the Pod is cleaned and before the Pods project is created. The working directory is the root of the Pod.
If the pod is installed with the :path option this command will not be executed.
單個命令
spec.prepare_command = 'ruby build_files.rb'
多條命令
spec.prepare_command = <<-CMD
sed -i 's/MyNameSpacedHeader/Header/g' ./**/*.h
sed -i 's/MyNameOtherSpacedHeader/OtherHeader/g' ./**/*.h
CMD
28血久、deprecated
是否過期
spec.deprecated = true
29、平臺
如果不寫默認(rèn)支持所有平臺
各個平臺
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
支持的平臺帮非,僅支持
spec.platform = :ios //僅支持ios
30氧吐、weak_frameworks
如果在高版本的OS中調(diào)用新增的功能,并且在低版本的OS中依然能夠運(yùn)行,那么就要用到weak_frameworks.如果引用的某些類或者接口在低版本中并不支持末盔,對于不支持的接口筑舅,可以在運(yùn)行的時候判斷,這樣程序不會出錯陨舱,如果不weak引用翠拣,程序在低版本下啟動的時候就會崩潰掉
spec.weak_framework = 'MessageUI'
31、compiler_flags
spec.compiler_flags = '-DOS_OBJECT_USE_OBJC=0', '-Wno-format'
二游盲、文件匹配
*
匹配所有文件
c*
匹配以名字C開頭的文件
*c
匹配以名字c結(jié)尾的文件
*c*
匹配所有名字包含c的文件
**
文件夾以及遞歸子文件夾
?
任意一個字符(注意是一個字符)
[set]
匹配多個字符,支持取反
{p,q}
匹配名字包括p 或者 q的文件
例子:
"JSONKit.?" #=> ["JSONKit.h", "JSONKit.m"] //JSONKit.字符
"*.[a-z][a-z]" #=> ["CHANGELOG.md", "README.md"]//.兩個a-z的字母
"*.[^m]*" #=> ["JSONKit.h"] //.不是m的字符
"*.{h,m}" #=> ["JSONKit.h", "JSONKit.m"] //包含.h或者.m
"*" #=> ["CHANGELOG.md", "JSONKit.h", "JSONKit.m", "README.md"]//所有文件