Mercurial > rsstweet
view app/helpers/application_helper.rb @ 95:dfd7daac110e
Simpler syntax because I can
| author | nanaya <me@myconan.net> |
|---|---|
| date | Thu, 28 Jul 2016 03:56:56 +0900 |
| parents | 0c8a8b390145 |
| children | c5c095f6981e |
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 def atom_id(id) "tag:#{request.host_with_port},2005:#{id}" end end
