26d2e60aafc05a9f64f83134d9c5397181c7c039
[feedcatcher.git] / vendor / rails / actionmailer / lib / action_mailer / utils.rb
1 module ActionMailer
2 module Utils #:nodoc:
3 def normalize_new_lines(text)
4 text.to_s.gsub(/\r\n?/, "\n")
5 end
6 end
7 end