Posts

Showing posts from January, 2013

10 tips for securing nginx

10 tips for securing nginx

truncate and link text helper in rails

snippet to truncate text and link to see more Code this in application helper.   def truncate_and_link( text,options ={})     length = options[:length]     return text if length.blank?     url = options[:url] || '#'     output = raw truncate(text, :length => length)     output += link_to('more', url) if text.size > length     output.html_safe   end Useful when eg linking big posts