Module: Kamerling::CoreExtensions::Main

Defined in:
lib/kamerling/core_extensions/main.rb

Class Method Summary collapse

Class Method Details

.warn_offObject



6
7
8
9
10
11
12
# File 'lib/kamerling/core_extensions/main.rb', line 6

def warn_off
  verbose  = $VERBOSE
  $VERBOSE = false
  yield
ensure
  $VERBOSE = verbose
end