aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/misc.rb
blob: 1ca00db1e7fda45525b16aa773be653c5d1b0e44 (plain) (blame)
1
2
3
4
5
6
7
8
def silence_warnings
  old_verbose, $VERBOSE = $VERBOSE, nil
  begin
    yield
  ensure
    $VERBOSE = old_verbose
  end
end