Module: Kernel

Defined in:
lib/ext/kernel.rb

Instance Method Summary collapse

Instance Method Details

#capture_stdoutObject



2
3
4
5
6
7
8
9
# File 'lib/ext/kernel.rb', line 2

def capture_stdout
  out = StringIO.new
  $stdout = out
  yield
  return out
ensure
  $stdout = STDOUT
end