module Commander::HelpFormatter

def indent(amount, text)

def indent(amount, text)
  text.to_s.gsub("\n", "\n" + (' ' * amount))
end