mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02: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
|