cc03b1c1e107d4a4414f85344a18c9258bb0ca32
[packages/precise/mcollective.git] / lib / mcollective / vendor / i18n / lib / i18n / core_ext / kernel / surpress_warnings.rb
1 module Kernel
2   def suppress_warnings
3     original_verbosity = $VERBOSE
4     $VERBOSE = nil
5     result = yield
6     $VERBOSE = original_verbosity
7     result
8   end
9 end