# File lib/ramaze/helper/formatting.rb, line 164 def obfuscate_email(email, text = nil) obfuscated = [] email.to_s.each_byte{|c| obfuscated << "&#%03d" % c } joined = obfuscated.join %(<a href="mailto:#{joined}">#{text || joined}</a>) end