end
def linkify(text)
- return auto_link(text, :link => :urls, :html => { :rel => "nofollow" })
+ return Rinku.auto_link(text, :urls, tag_options(:rel => "nofollow"))
end
def html_escape_unicode(text)
- chars = ActiveSupport::Multibyte::Chars.u_unpack(text).map do |c|
+ chars = ActiveSupport::Multibyte::Unicode.u_unpack(text).map do |c|
c < 127 ? c.chr : "&##{c.to_s};"
end