class Console::Output::Terminal::Buffer
Represents an output buffer that formats lines with a prefix.
Attributes
@attribute [String] The prefix to use for each line.
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/terminal.rb, line 24 def initialize(prefix = nil) @prefix = prefix super() end
Create a new buffer with the given prefix.
@parameter prefix [String] The prefix to use for each line.
Calls superclass method
StringIO::new
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/terminal.rb, line 37 def puts(*lines, prefix: @prefix) lines.each do |line| self.write(prefix) if prefix super(line) end end
Write lines using the given prefix.
@parameter lines [Array] The lines to write. @parameter prefix [String] The prefix to use for each line.
Calls superclass method
IO::generic_writable#puts
Also aliased as: <<