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
-
#write(msg = '') ⇒ Object
Prints raw message.
Instance Method Details
#write(msg = '') ⇒ Object
Prints raw message.
18 19 20 |
# File 'lib/rex/ui/text/output/buffer/stdout.rb', line 18 def write(msg = '') print_raw(msg) end |