Froze rails gems
[depot.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 module_function :normalize_new_lines
7 end
8 end