1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix vendor require paths to prevent files being required twice

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2130 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jamis Buck 2005-09-05 09:06:55 +00:00
parent 258bacbf82
commit 873be1258e
3 changed files with 5 additions and 3 deletions

View file

@ -1,5 +1,7 @@
*SVN*
* Fix vendor require paths to prevent files being required twice
* Don't add charset to content-type header for a part that contains subparts (for AOL compatibility) #2013 [John Long]
* Preserve underscores when unquoting message bodies #1930

View file

@ -38,7 +38,7 @@ require 'action_mailer/base'
require 'action_mailer/helpers'
require 'action_mailer/mail_helper'
require 'action_mailer/quoting'
require 'action_mailer/vendor/tmail'
require 'tmail'
require 'net/smtp'
ActionMailer::Base.class_eval do

View file

@ -1,4 +1,4 @@
require 'action_mailer/vendor/text/format'
require 'text/format'
module MailHelper#:nodoc:
def block_format(text)
@ -14,4 +14,4 @@ module MailHelper#:nodoc:
formatted
end
end
end