Class: Ronin::Core::OutputFormats::TXT
- Inherits:
-
OutputFile
- Object
- OutputFormat
- OutputFile
- Ronin::Core::OutputFormats::TXT
- Defined in:
- lib/ronin/core/output_formats/txt.rb
Overview
Represents a plain-text list of discovered values.
Instance Attribute Summary
Attributes inherited from OutputFile
Instance Method Summary collapse
-
#<<(value) ⇒ self
Appends a value to the list output stream.
Methods inherited from OutputFile
Constructor Details
This class inherits a constructor from Ronin::Core::OutputFormats::OutputFile
Instance Method Details
#<<(value) ⇒ self
Appends a value to the list output stream.
41 42 43 44 45 |
# File 'lib/ronin/core/output_formats/txt.rb', line 41 def <<(value) @io.puts(value.to_s) @io.flush return self end |