module Byebug::Helpers::StringHelper

def prettify(str)


command prompt.
Improves indentation and spacing in +str+ for readability in Byebug's
def prettify(str)
  "\n" + str.gsub(/^ {6}/, '') + "\n"
end