require_relative 'command/statistics' require_relative 'command/build' require_relative 'command/fetch' require_relative 'command/push' require_relative 'command/clean' module Pod class Command class JxedtCommand < Command class Binary < JxedtCommand self.summary = '二进制相关操作,二进制build、fetch、clean、statistics' self.description = <<-DESC 二进制相关操作,二进制build、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