12 lines
194 B
Ruby
12 lines
194 B
Ruby
module Silencer
|
|
def silenced
|
|
@stdout = $stdout
|
|
$stdout = Tempfile.new('stdout')
|
|
yield if block_given?
|
|
ensure
|
|
$stdout.close
|
|
$stdout.unlink
|
|
$stdout = @stdout
|
|
end
|
|
end
|