Sha256: 87bc32881c853cd71d8ed3cb5e69ab3cc28b5c7f034c1df91d7a3624a277deb5
Contents?: true
Size: 1.12 KB
Versions: 2
Compression:
Stored size: 1.12 KB
Contents
module PDK::CLI @config_get_cmd = @config_cmd.define_command do name 'get' usage 'config get [name]' summary '(Deprecated) Retrieve the configuration for <name>. If not specified, retrieve all configuration settings' run do |_opts, args, _cmd| PDK.logger.warn 'The \'pdk config get\' command is deprecated, please use \'pdk get config\' instead.' item_name = args[0] resolved_config = PDK.config.resolve(item_name) # If the user wanted to know a setting but it doesn't exist, raise an error if resolved_config.empty? && !item_name.nil? PDK.logger.error("Configuration item '%{name}' does not exist" % { name: item_name }) exit 1 end # If the user requested a setting and it's the only one resolved, then just output the value if resolved_config.count == 1 && resolved_config.keys[0] == item_name puts '%{value}' % { value: resolved_config.values[0] } exit 0 end # Otherwise just output everything resolved_config.keys.sort.each { |key| puts '%{name}=%{value}' % { name: key, value: resolved_config[key] } } end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pdk-2.7.1 | lib/pdk/cli/config/get.rb |
pdk-2.7.0 | lib/pdk/cli/config/get.rb |