view app/helpers/application_helper.rb @ 87:b01b5265e6d1

Whoops, forgot to rescue somewhere else
author nanaya <me@myconan.net>
date Mon, 27 Jun 2016 06:01:39 +0900
parents f91e2d00f03f
children 0c8a8b390145
line wrap: on
line source

module ApplicationHelper
  include Twitter::Autolink

  def ellipsize(text, limit = 30)
    if text.length <= limit
      text
    else
      "#{text.first(limit)}..."
    end
  end
end