lib/cocoapods-jxedt/command/binary/command/build.rb in cocoapods-jxedt-0.0.14 vs lib/cocoapods-jxedt/command/binary/command/build.rb in cocoapods-jxedt-0.0.15
- old
+ new
@@ -3,20 +3,21 @@
class JxedtCommand < Command
class Binary < JxedtCommand
class Build < Binary
self.summary = '组件编译成二进制'
self.description = <<-DESC
- 统计二进制组件
+ 编译组件为二进制\n
+ 编译结果目录默认在Podfile文件同级目录'Pods-Source/.command_build'
DESC
self.command = 'build'
self.arguments = [
]
def self.options
[
['--name', '编译的组件name,多个以,分隔'],
['--output-path', '编译的二进制文件输出路径'],
- ['--push', 'prebuild frameworks push origin.'],
- ['--force-push', 'force push generated frameworks']
+ ['--push', '编译的组件二进制推送到远程'],
+ ['--force-push', '强制推送编译的组件二进制到远程']
]
end
def initialize(argv)
@names = argv.option('name', '').split(',')
@output_path = argv.option('output-path')
\ No newline at end of file