Module: Rex::Ui::Text::Output::Buffer::Stdout

Defined in:
lib/rex/ui/text/output/buffer/stdout.rb

Overview

Adds #write method to Rex::Ui::Text::Output::Buffer so it can function as a stand-in for ‘$stdout`

Instance Method Summary collapse

Instance Method Details

#write(msg = '') ⇒ Object

Prints raw message.



16
17
18
# File 'lib/rex/ui/text/output/buffer/stdout.rb', line 16

def write(msg = '')
  print_raw(msg)
end