# File lib/heroku/helpers.rb, line 131
    def truncate(text, length)
      if text.size > length
        text[0, length - 2] + '..'
      else
        text
      end
    end