14
15
16
17
18
19
20
21
22
23
24
25
|
# File 'lib/cocoapods-tj/command/bin/auto.rb', line 14
def self.options
[
['--code-dependencies', '使用源码依赖'],
['--allow-prerelease', '允许使用 prerelease 的版本'],
['--no-clean', '保留构建中间产物'],
['--framework-output', '输出framework文件'],
['--no-zip', '不压缩静态 framework 为 zip'],
['--all-make', '对该组件的依赖库,全部制作为二进制组件'],
['--configuration', 'Build the specified configuration (e.g. Release ). Defaults to Debug'],
['--env', "该组件上传的环境 %w[dev debug_iphoneos release_iphoneos]"]
].concat(Pod::Command::Gen.options).concat(super).uniq
end
|