Sha256: 7bcfcfd048a75dfccdb92f1d6942910a8cc48a397295a3f8eaf106efdc759435
Contents?: true
Size: 435 Bytes
Versions: 17
Compression:
Stored size: 435 Bytes
Contents
require 'stringio' module Reek module CLI # CLI silencer module Silencer module_function # :reek:TooManyStatements: { max_statements: 7 } def silently old_verbose = $VERBOSE $VERBOSE = false $stderr = StringIO.new $stdout = StringIO.new yield ensure $VERBOSE = old_verbose $stderr = STDERR $stdout = STDOUT end end end end
Version data entries
17 entries across 17 versions & 1 rubygems