view app/helpers/application_helper.rb @ 88:cf9a9ce2d034

Increase cache timeout to ease up load ;_;
author nanaya <me@myconan.net>
date Tue, 28 Jun 2016 02:38:27 +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