# File lib/safemode/core_ext.rb, line 2
  def silently(&blk)
    old_verbose, $VERBOSE = $VERBOSE, nil
    yield
    $VERBOSE = old_verbose
  end