Method: Pod::Command::Bin::Archive.options

Defined in:
lib/cocoapods-lhj-bin/command/bin/archive.rb

.optionsObject

[View source]

26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/cocoapods-lhj-bin/command/bin/archive.rb', line 26

def self.options
  [
      ['--all-make', '对该组件的依赖库,全部制作为二进制组件'],
      ['--code-dependencies', '使用源码依赖'],
      ['--no-clean', '保留构建中间产物'],
      ['--sources', '私有源地址,多个用分号区分'],
      ['--framework-output', '输出framework文件'],
      ['--no-zip', '不压缩静态库 为 zip'],
      ['--configuration', 'Build the specified configuration (e.g. Debug). Defaults to Release'],
      ['--env', "该组件上传的环境 %w[dev debug_iphoneos release_iphoneos]"]
  ].concat(Pod::Command::Gen.options).concat(super).uniq
end