Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix legacy fallback for parameterized mailers | Gannon McGibbon | 2019-01-07 | 1 | -1/+9 |
| | |||||
* | Add MailDeliveryJob for unified mail delivery | Gannon McGibbon | 2018-12-04 | 1 | -2/+16 |
| | | | | | Add `MailDeliveryJob` for delivering both regular and parameterized mail. Deprecate using `DeliveryJob` and `Parameterized::DeliveryJob`. | ||||
* | Deliver parameterized mail with DeliveryJob | Gannon McGibbon | 2018-11-22 | 1 | -7/+1 |
| | | | | | Deliver parameterized mail with `ActionMailer::DeliveryJob` and remove `ActionMailer::Parameterized::DeliveryJob`. | ||||
* | Parameterized mailers can configure delivery job | Luke Pearce | 2018-10-05 | 1 | -1/+2 |
| | | | | | | | | | | Setting parameterized_delivery_job on a mailer class will cause Parameterized::MessageDelivery to use the specified job instead of ActionMailer::Parameterized::DeliveryJob: class MyMailer < ApplicationMailer self.parameterized_delivery_job = MyCustomDeliveryJob ... end | ||||
* | Use frozen string literal in actionmailer/ | Kir Shatrov | 2017-07-23 | 1 | -0/+2 |
| | |||||
* | Revert "Merge pull request #29540 from kirs/rubocop-frozen-string" | Matthew Draper | 2017-07-02 | 1 | -1/+0 |
| | | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa. | ||||
* | Enforce frozen string in Rubocop | Kir Shatrov | 2017-07-01 | 1 | -0/+1 |
| | |||||
* | Document with with an example an link to Parameterized | Rafael Mendonça França | 2017-01-30 | 1 | -1/+6 |
| | | | | | Also change the class_methods to ClassMethods since the former document the method as an instance method of Parameterized not as a class method. | ||||
* | :scissors: | Rafael Mendonça França | 2017-01-30 | 1 | -1/+1 |
| | |||||
* | No need to advertise in the rdoc documentation | Rafael Mendonça França | 2017-01-30 | 1 | -3/+0 |
| | |||||
* | Implement respond_to_missing? in the Parameterized::Mailer class | Rafael Mendonça França | 2017-01-30 | 1 | -6/+11 |
| | |||||
* | Remove unneeded nodoc | Rafael Mendonça França | 2017-01-30 | 1 | -1/+1 |
| | |||||
* | Override the initializers instead of using tap | Rafael Mendonça França | 2017-01-30 | 1 | -3/+6 |
| | | | | We own the class so we can override the initialize. | ||||
* | Make internal classes internal for the documentation | Rafael Mendonça França | 2017-01-30 | 1 | -2/+2 |
| | |||||
* | [ci skip] other -> order; expand ivar | Kasper Timm Hansen | 2017-01-28 | 1 | -1/+2 |
| | |||||
* | Offer the option to use parameterization for shared processing of headers ↵ | David Heinemeier Hansson | 2017-01-28 | 1 | -0/+141 |
and ivars (#27825) Offer the option to use parameterization for shared processing of headers and ivars |