Sha256: c4084a75ec7d0b4be7f10cd603c2f84ae63a62d54efa822185693b5b48c7b0e2

Contents?: true

Size: 1.01 KB

Versions: 7

Compression:

Stored size: 1.01 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 = '二进制相关操作'
                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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
cocoapods-jxedt-0.0.21 lib/cocoapods-jxedt/command/binary/binary.rb
cocoapods-jxedt-0.0.20 lib/cocoapods-jxedt/command/binary/binary.rb
cocoapods-jxedt-0.0.19 lib/cocoapods-jxedt/command/binary/binary.rb
cocoapods-jxedt-0.0.18 lib/cocoapods-jxedt/command/binary/binary.rb
cocoapods-jxedt-0.0.17 lib/cocoapods-jxedt/command/binary/binary.rb
cocoapods-jxedt-0.0.16 lib/cocoapods-jxedt/command/binary/binary.rb
cocoapods-jxedt-0.0.15 lib/cocoapods-jxedt/command/binary/binary.rb