Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Removing internal delivery agents | Mikel Lindsaar | 2010-01-16 | 4 | -85/+0 |
| | |||||
* | Merge Mail with latest Rails and move mail gem to Gemfile. | José Valim | 2009-12-27 | 1 | -2/+2 |
|\ | |||||
| * | All AM modules are safe to defer | Joshua Peek | 2009-12-22 | 1 | -2/+2 |
| | | |||||
* | | Merge branch 'rails' | Mikel Lindsaar | 2009-12-17 | 1 | -1/+1 |
|\| | | | | | | | | | | | Conflicts: actionmailer/lib/action_mailer.rb actionmailer/lib/action_mailer/delivery_method/smtp.rb | ||||
| * | Reorganize autoloads: | Carlhuda | 2009-12-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * A new module (ActiveSupport::Autoload) is provide that extends autoloading with new behavior. * All autoloads in modules that have extended ActiveSupport::Autoload will be eagerly required in threadsafe environments * Autoloads can optionally leave off the path if the path is the same as full_constant_name.underscore * It is possible to specify that a group of autoloads live under an additional path. For instance, all of ActionDispatch's middlewares are ActionDispatch::MiddlewareName, but they live under "action_dispatch/middlewares/middleware_name" * It is possible to specify that a group of autoloads are all found at the same path. For instance, a number of exceptions might all be declared there. * One consequence of this is that testing-related constants are not autoloaded. To get the testing helpers for a given component, require "component_name/test_case". For instance, "action_controller/test_case". * test_help.rb, which is automatically required by a Rails application's test helper, requires the test_case.rb for all active components, so this change will not be disruptive in existing or new applications. | ||||
| * | avoid generating invalid SMTP commands in ruby pre 1.9 | Michael Koziarski | 2009-11-28 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com> Conflicts: actionmailer/lib/action_mailer/base.rb | ||||
* | | Down to 13 failures, 14 errors | Mikel Lindsaar | 2009-11-20 | 1 | -1/+1 |
| | | |||||
* | | Starting again on actionmailer integration with mail | Mikel Lindsaar | 2009-11-12 | 1 | -2/+1 |
|/ | |||||
* | Refactor ActionMailer layout and remove legacy one. | José Valim | 2009-11-01 | 4 | -4/+4 |
| | |||||
* | abstract all of the ActionMailer delivery methods into their own classes. ↵ | Matthew Rudy Jacobs | 2009-11-01 | 4 | -0/+86 |
thereby the following are equivalent ActionMailer::Base.delivery_method = :smtp ActionMailer::Base.delivery_method = ActionMailer::DeliveryMethod::Smtp we could equally set our own custom object as long as it provides the instance method :perform_delivery(mail) eg. class MySmsDeliveryMethod def perform_delivery(mail) Sms.send(mail['to'], mail['body']) end end MySmsMailer.delivery_method = MySmsDeliveryMethod.new Signed-off-by: José Valim <jose.valim@gmail.com> |