utils.rb 173 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 module ActionMailer module Utils #:nodoc: def normalize_new_lines(text) text.to_s.gsub(/\r\n?/, "\n") end module_function :normalize_new_lines end end