class Console::Output::Split
Split
output into multiple outputs.
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/split.rb, line 13 def self.[](*outputs) self.new(outputs) end
Create a new split output.
@parameter outputs [Array(Console::Output
)] The outputs to split into.
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/split.rb, line 20 def initialize(outputs) @outputs = outputs end
Create a new split output.
@parameter outputs [Array(Console::Output
)] The outputs to split into.
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/split.rb, line 32 def call(...) @outputs.each do |output| output.call(...) end end
Invoke the outputs. If a block is used, it may be invoked multiple times.
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/split.rb, line 27 def verbose!(value = true) @outputs.each{|output| output.verbose!(value)} end
Set
the verbose flag for all outputs.
@parameter value [Boolean] The new value.