module Kernel

Public Instance Methods

silently() { || ... } click to toggle source
# File lib/safemode/core_ext.rb, line 2
def silently(&blk)
  old_verbose, $VERBOSE = $VERBOSE, nil
  yield
  $VERBOSE = old_verbose
end