module Pry::Helpers::Text
def indent(text, chars)
-
chars(Fixnum) -- -
text(String) --
def indent(text, chars) text.lines.map { |l| "#{' ' * chars}#{l}" }.join end
chars
(Fixnum)
--
text
(String)
--
def indent(text, chars) text.lines.map { |l| "#{' ' * chars}#{l}" }.join end