require_relative 'command/statistics' require_relative 'command/build' require_relative 'command/fetch' require_relative 'command/push' require_relative 'command/clean' require_relative 'command/code' require_relative 'command/source_project' module Pod class Command class JxedtCommand < Command class Binary < JxedtCommand self.summary = '二进制相关操作' self.description = <<-DESC 二进制相关操作,二进制build、clean、fetch、push、statistics等 DESC self.command = 'binary' self.abstract_command = true self.arguments = [ ] def self.options [] end def initialize(argv) super end def validate! super end def run end end end end end