module Byebug::Helpers::StringHelper

def camelize(str)


ACamelizedString.
Converts +str+ from an_underscored-or-dasherized_string to
def camelize(str)
  str.dup.split(/[_-]/).map(&:capitalize).join('')
end

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