Method: Beaker::Subcommands::SubcommandUtil.exit_with

Defined in:
lib/beaker/subcommands/subcommand_util.rb

.exit_with(msg) ⇒ Object

Print a message to the console and exit with 0  @param [String] msg the message to print



89
90
91
92
# File 'lib/beaker/subcommands/subcommand_util.rb', line 89

def self.exit_with(msg)
  puts msg
  exit(0)
end