# File lib/active_support/core_ext/kernel/reporting.rb, line 9
  def silence_warnings
    old_verbose, $VERBOSE = $VERBOSE, nil
    yield
  ensure
    $VERBOSE = old_verbose
  end