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