module Console::Terminal
Styled terminal output.
Styled terminal output.
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/terminal.rb, line 13 def self.for(stream) if stream.tty? XTerm.new(stream) else Text.new(stream) end end
Create a new terminal output for the given stream.