class Thor::Shell::Basic

def print_wrapped(message, options = {})


indent:: Indent each line of the printed paragraph by indent value.
==== Options

String
==== Parameters

terminal display. Ideal for printing heredocs.
Prints a long string, word-wrapping the text to the current width of the
def print_wrapped(message, options = {})
  printer = WrappedPrinter.new(stdout, options)
  printer.print(message)
end