Module: ImproveYourCode::CLI::Silencer

Defined in:
lib/improve_your_code/cli/silencer.rb

Overview

CLI silencer

Class Method Summary collapse

Class Method Details

.silentlyObject



11
12
13
14
15
16
17
18
19
20
21
# File 'lib/improve_your_code/cli/silencer.rb', line 11

def silently
  old_verbose = $VERBOSE
  $VERBOSE = false
  $stderr = StringIO.new
  $stdout = StringIO.new
  yield
ensure
  $VERBOSE = old_verbose
  $stderr = STDERR
  $stdout = STDOUT
end