mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-21 17:50:13 +01:00
8 lines
132 B
Ruby
8 lines
132 B
Ruby
|
|
module ActionMailer
|
||
|
|
module Utils #:nodoc:
|
||
|
|
def normalize_new_lines(text)
|
||
|
|
text.to_s.gsub(/\r\n?/, "\n")
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|