Sha256: da8a8bba2e4786f8f1784aefaf1a76caf02d94eda757a097cc5a68c84e1d0b52

Contents?: true

Size: 940 Bytes

Versions: 3

Compression:

Stored size: 940 Bytes

Contents

module Pod
    class Command
        class JxedtCommand < Command
            class Options < JxedtCommand
                self.summary = 'binary配置参数介绍'
                self.description = <<-DESC
                binary插件配置介绍
                DESC
                self.command = 'options'
                self.arguments = [
                ]
                def self.options
                    []
                end
                def initialize(argv)
                    super
                end
      
                def validate!
                    super
                end
      
                def run
                    require 'cocoapods-jxedt/binary/config'
                    require 'json'
                    
                    dsl_config = Jxedt::Config::APPLICABLE_DSL_CONFIG
                    puts JSON.pretty_generate(dsl_config)
                end
            end
        end
    end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cocoapods-jxedt-0.0.12 lib/cocoapods-jxedt/command/options/options.rb
cocoapods-jxedt-0.0.10 lib/cocoapods-jxedt/command/options/options.rb
cocoapods-jxedt-0.0.9 lib/cocoapods-jxedt/command/options/options.rb