Method: Transcriptic::UI#output_with_indent

Defined in:
lib/transcriptic/ui.rb

#output_with_indent(message, indent = 3) ⇒ Object



210
211
212
213
# File 'lib/transcriptic/ui.rb', line 210

def output_with_indent(message, indent = 3)
  return if message.to_s.strip == ""
  display ("  " * indent) + message.split("\n").join("\n       ")
end