Module: Kernel

Defined in:
lib/automation_object/helpers/kernel.rb

Overview

Kernel method additions

Instance Method Summary collapse

Instance Method Details

#suppress_warningsObject



5
6
7
8
9
10
11
# File 'lib/automation_object/helpers/kernel.rb', line 5

def suppress_warnings
  original_verbosity = $VERBOSE
  $VERBOSE = nil
  result = yield
  $VERBOSE = original_verbosity
  result
end