Sha256: 1fed094da199430e317b4fcc85aa50db94740b43fd0239bc82677c755a86445c

Contents?: true

Size: 995 Bytes

Versions: 1

Compression:

Stored size: 995 Bytes

Contents

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cocoapods-jxedt-0.0.13 lib/cocoapods-jxedt/command/binary/binary.rb