我想创建一个基于某些私有代码的本地podspec。我似乎无法使用'source'属性,因为它不起作用。我可以使用'source_files'属性,但它不会递归地包含文件。所以使用一个看起来像这样的目录
Library
/src
/Core
/Audio
/Graphics
我的podspec看起来像这样:
Pod::Spec.new do |s|
...
s.source = 'src' # this does not work.
s.source_files = 'src' # this only includes the files in src, and not in any of the Core, Audio or Graphics folders.
我想要指定'-r'标志。我尝试过使用通配符,但没有运气。
答案 0 :(得分:34)
source_files
属性使用Ruby file glob syntax。模式必须相对于项目的根目录(即podspec文件),所以这应该适合你:
s.source_files = 'Library/src/**/*.{h,m}'
source
属性不适用于源代码文件,而是适用于应从中检索代码的远程存储库(最常见的是Git存储库URL和标记)。有关详细信息,请参阅CocoaPods specification docs。
答案 1 :(得分:0)
CocoaPods
[About]
spec.source_files = 'Classes/**/*.{h,m,swift}', 'More_Classes/**/*.{h,m, swift}'
文件格式:
*
-匹配任何文件。**
-递归匹配目录。?
-匹配任意一个字符。[set]
-匹配集合中的任何一个字符。{p,q}
-匹配文字p或文字q。\
-转义下一个元字符。