class Console::Terminal::Formatter::Spawn
Format
a spawn event, including the command and arguments.
Constants
- KEY
-
The key used to identify this formatter.
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/terminal/formatter/spawn.rb, line 17 def initialize(terminal) @terminal = terminal @terminal[:spawn_command] ||= @terminal.style(:blue, nil, :bold) end
Create a new spawn formatter.
@param terminal [Terminal::Text] The terminal to use for formatting.
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/terminal/formatter/spawn.rb, line 28 def format(event, stream, verbose: false, width: 80) environment, arguments, options = event.values_at(:environment, :arguments, :options) arguments = arguments.flatten.collect(&:to_s) stream.puts "#{@terminal[:spawn_command]}#{arguments.join(' ')}#{@terminal.reset}#{chdir_string(options)}" if verbose and environment environment.each do |key, value| stream.puts "export #{key}=#{value}" end end end
Format
the given event.
@parameter event [Hash] The event to format. @parameter stream [IO] The stream to write the formatted event to. @parameter verbose [Boolean] Whether to include additional information. @parameter width [Integer] The width of the progress bar.