Class: Ronin::UI::Output::Terminal::Raw
- Defined in:
- lib/ronin/ui/output/terminal/raw.rb
Overview
The handler for raw output to the terminal.
Class Method Summary collapse
-
.print_debug(message) ⇒ Object
private
Prints a
debugmessage. -
.print_error(message) ⇒ Object
private
Prints an
errormessages. -
.print_info(message) ⇒ Object
private
Prints an
infomessage. -
.print_warning(message) ⇒ Object
private
Prints a
warningmessage. -
.write(data) ⇒ Object
private
Writes data to
STDOUT.
Class Method Details
.print_debug(message) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Prints a debug message.
67 68 69 |
# File 'lib/ronin/ui/output/terminal/raw.rb', line 67 def self.print_debug() puts "[=] #{}" end |
.print_error(message) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Prints an error messages.
95 96 97 |
# File 'lib/ronin/ui/output/terminal/raw.rb', line 95 def self.print_error() puts "[!] #{}" end |
.print_info(message) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Prints an info message.
53 54 55 |
# File 'lib/ronin/ui/output/terminal/raw.rb', line 53 def self.print_info() puts "[-] #{}" end |
.print_warning(message) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Prints a warning message.
81 82 83 |
# File 'lib/ronin/ui/output/terminal/raw.rb', line 81 def self.print_warning() puts "[*] #{}" end |