我想创建一个基于一些私有代码的本地 podspec。我似乎无法使用“源”属性,因为它不起作用。我可以使用“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'标志。我试过使用通配符,但没有运气。