class Console::Output::Wrapper
A generic wrapper for output handling.
Attributes
@attribute [Console::Output] The output to delegate to.
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/wrapper.rb, line 14 def initialize(delegate, **options) @delegate = delegate end
Create a new wrapper output.
@parameter delegate [Console::Output] The output to delegate to. @parameter options [Hash] Additional options to customize the output.
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/wrapper.rb, line 34 def call(...) @delegate.call(...) end
Invoke the delegate.
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/wrapper.rb, line 22 def last_output @delegate.last_output end
The last output is the last output of the delegate.
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/wrapper.rb, line 29 def verbose!(value = true) @delegate.verbose!(value) end
Set
the verbose flag for the delegate.
@parameter value [Boolean] The new value.