Method: Inch::Utils::UI#trace

Defined in:
lib/inch/utils/ui.rb

#trace(text = '') ⇒ void

This method returns an undefined value.

Writes the given text to out

Parameters:

  • text (String) (defaults to: '')


32
33
34
35
# File 'lib/inch/utils/ui.rb', line 32

def trace(text = '')
  @current_header_color = nil if text.to_s.empty?
  out.puts text
end