class Thor::Shell::Basic
def print_wrapped(message, options = {})
indent
==== 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