Sha256: 14330ac06016f03e569d2e588368718162cb67b455372617b8a7b248751f08da
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
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 = '二进制相关操作,二进制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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cocoapods-jxedt-0.0.14 | lib/cocoapods-jxedt/command/binary/binary.rb |