Class: Thor::Shell::Basic
- Inherits:
-
Object
- Object
- Thor::Shell::Basic
- Defined in:
- lib/cpl.rb
Instance Method Summary collapse
Instance Method Details
#print_wrapped(message, options = {}) ⇒ Object
38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/cpl.rb', line 38 def print_wrapped(, = {}) indent = ([:indent] || 0).to_i if indent.zero? stdout.puts() else .each_line do || stdout.print(" " * indent) stdout.puts(.chomp) end end end |