Method: Wait::BaseRescuer#indent

Defined in:
lib/rescuers/base.rb

#indent(lines, spaces = 25) ⇒ Object

Indents text a given number of spaces.



24
25
26
# File 'lib/rescuers/base.rb', line 24

def indent(lines, spaces = 25)
  lines.map { |line| (" " * spaces) + line }.join("\n")
end