instiki/vendor/rails/actionmailer/lib/action_mailer/utils.rb

9 lines
173 B
Ruby
Raw Normal View History

2007-01-22 14:43:50 +01:00
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