# File lib/rudy/cli/config.rb, line 75 75: def print_global 76: # NOTE: This method cannot be called just "global" b/c that conflicts 77: # with the global accessor for Drydock::Command classes. 78: if @@global.nil? 79: raise Rudy::NoGlobal 80: end 81: gtmp = @@global.clone 82: gtmp.format = "yaml" if gtmp.format == :s || gtmp.format == :string 83: gtmp.secretkey = hide_secret_key(gtmp.secretkey) 84: li gtmp.dump(gtmp.format) 85: end