# File lib/rudy/cli/base.rb, line 83 83: def print_header 84: 85: # Send The Huxtables the global values again because they could be 86: # updated after initialization but before the command was executed 87: Rudy::Huxtable.update_global @global 88: 89: li Rudy::CLI.generate_header(@@global, @@config) if @@global.print_header 90: 91: unless @@global.quiet 92: if @@global.environment == "prod" 93: msg = "YOU ARE PLAYING WITH PRODUCTION" 94: li Rudy::Utils.banner(msg, :normal), $/ 95: end 96: end 97: end