method

silence_stream

v3.2.8 - Show latest stable - Class: Kernel
silence_stream(stream)
public

Silences any stream for the duration of the block.

silence_stream(STDOUT) do
  puts 'This will never be seen'
end

puts 'But this will'