mirror of
https://github.com/github/rails.git
synced 2026-02-01 09:44:56 -05:00
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1732 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
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
|