module Polyfill module Utils def ignore_warnings orig = $VERBOSE $VERBOSE = nil yield $VERBOSE = orig end module_function :ignore_warnings end end