Method: Gonzui::CommandLineApplication#be_quiet

Defined in:
lib/gonzui/cmdapp/app.rb

#be_quietObject



62
63
64
65
# File 'lib/gonzui/cmdapp/app.rb', line 62

def be_quiet
  devnull = if windows? then "NUL" else "/dev/null" end
  STDOUT.reopen(devnull)
end