Module: Kernel

Defined in:
ext/extconf.rb

Instance Method Summary collapse

Instance Method Details

#suppress_warningsObject



19
20
21
22
23
24
25
# File 'ext/extconf.rb', line 19

def suppress_warnings
  origVerbosity = $VERBOSE
  $VERBOSE = nil
  result = yield
  $VERBOSE = origVerbosity
  return result
end