module Console::Output::Default
Default
output format selection.
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/default.rb, line 19 def self.new(stream, **options) stream ||= $stderr if stream.tty? output = Terminal.new(stream, **options) else output = Serialized.new(stream, **options) end return output end
Create a new output format based on the given stream.
@parameter io [IO] The output stream. @parameter options [Hash] Additional options to customize the output. @returns [Console::Output::Terminal | Console::Output::Serialized
] The output instance, depending on whether the ‘io` is a terminal or not.