mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-21 01:30:12 +01:00
9 lines
173 B
Ruby
9 lines
173 B
Ruby
|
|
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
|