mirror of
https://github.com/TracksApp/tracks.git
synced 2026-02-06 16:01:47 +01:00
7 lines
132 B
Ruby
7 lines
132 B
Ruby
module ActionMailer
|
|
module Utils #:nodoc:
|
|
def normalize_new_lines(text)
|
|
text.to_s.gsub(/\r\n?/, "\n")
|
|
end
|
|
end
|
|
end
|