File: warning_helpers.rb

package info (click to toggle)
ruby-excon 0.112.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,232 kB
  • sloc: ruby: 7,855; makefile: 5
file content (9 lines) | stat: -rw-r--r-- 184 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
def silence_warnings
  orig_verbose = $VERBOSE
  $VERBOSE = nil
  Excon.set_raise_on_warnings!(false)
  yield
ensure
  $VERBOSE = orig_verbose
  Excon.set_raise_on_warnings!(true)
end