Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Adding options to register observers and interceptors through ↵ | Mikel Lindsaar | 2010-02-22 | 1 | -0/+26 | |
| | | | | | | ActionMailer::Base.register_observer and ActionMailer::Base.register_interceptor. These hook into Mail.register_interceptor and Mail.register_observer. Also bumped Mail requirement to 2.1.3 Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Use ActionDispatch::Routing everywhere | Martin Schürrer | 2010-02-21 | 1 | -1/+1 | |
| | ||||||
* | Allow to choose the template path and template name used in implicit ↵ | José Valim | 2010-02-19 | 1 | -21/+36 | |
| | | | | rendering with ActionMailer. | |||||
* | Merge master. | José Valim | 2010-02-17 | 2 | -2/+8 | |
|\ | ||||||
| * | Fix test load paths for those not using bundler | Joshua Peek | 2010-02-15 | 2 | -2/+8 | |
| | | ||||||
* | | Rename Rails::Subscriber to Rails::LogSubscriber | Prem Sichanugrist | 2010-02-16 | 1 | -5/+5 | |
|/ | ||||||
* | Fixing actionmailer tests for CI | Mikel Lindsaar | 2010-02-06 | 1 | -1/+2 | |
| | ||||||
* | require 'action_controller' added on a test that uses it | Santiago Pastorino and José Ignacio Costa | 2010-02-04 | 1 | -0/+1 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Make AM test suite green. | José Valim | 2010-02-01 | 2 | -2/+3 | |
| | ||||||
* | Convert to class_attribute | Jeremy Kemper | 2010-02-01 | 2 | -16/+14 | |
| | ||||||
* | Get rails tests running on bundler 0.9 | Carl Lerche | 2010-01-31 | 1 | -8/+1 | |
| | ||||||
* | Add transfer_encoding= setter deprecation. | José Valim | 2010-01-30 | 1 | -0/+10 | |
| | ||||||
* | Automatically configure generators if application is defined. | José Valim | 2010-01-29 | 1 | -1/+3 | |
| | ||||||
* | ActionMailer should depend just on AbstractController. | José Valim | 2010-01-29 | 2 | -16/+20 | |
| | ||||||
* | Add a failing test case for render :layout | Mikel Lindsaar | 2010-01-29 | 6 | -0/+20 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Added tests for rendering different template for new API | Mikel Lindsaar | 2010-01-29 | 1 | -0/+14 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Rename 'defaults' class method to 'default' to reflect that it's a declaration | Jeremy Kemper | 2010-01-27 | 1 | -5/+5 | |
| | ||||||
* | Fix time comparison. Mail#date returns DateTime not Time. | Jeremy Kemper | 2010-01-27 | 1 | -1/+1 | |
| | ||||||
* | Expected attachment encoding is binary | Jeremy Kemper | 2010-01-27 | 1 | -2/+4 | |
| | ||||||
* | Fixed bug on HTML only emails getting set to text/plain | Mikel Lindsaar | 2010-01-28 | 3 | -0/+20 | |
| | ||||||
* | Bring AM tests back to green again. | José Valim | 2010-01-26 | 3 | -17/+3 | |
| | ||||||
* | Fix failing tests on AM about render(:body => Hash). | José Valim | 2010-01-26 | 4 | -60/+30 | |
| | ||||||
* | Failing AM test for legacy multipart alternative rendering | Joshua Peek | 2010-01-26 | 3 | -0/+39 | |
| | ||||||
* | Failing AM test for nested layouts | Joshua Peek | 2010-01-26 | 3 | -2/+19 | |
| | ||||||
* | Tidy up tests and docs. | José Valim and Mikel Lindsaar | 2010-01-26 | 1 | -18/+19 | |
| | ||||||
* | Fixing up tests and docs to use defaults :from => 'name' instead of ↵ | Mikel Lindsaar | 2010-01-27 | 1 | -3/+3 | |
| | | | | defaults({:from => 'name'}) | |||||
* | Fixed up documentation to reflect code change and cleaned up tests of ↵ | Mikel Lindsaar | 2010-01-27 | 1 | -38/+39 | |
| | | | | spurious #deliver calls | |||||
* | Fixed up being able to pass random headers in with headers, or mail. Also, ↵ | Mikel Lindsaar | 2010-01-27 | 1 | -5/+30 | |
| | | | | undeprecated headers(hash) as this works now too | |||||
* | Make defaults accept a hash. | José Valim and Mikel Lindsaar | 2010-01-26 | 1 | -42/+43 | |
| | ||||||
* | Fixing up expectations in base_test.rb | Mikel Lindsaar | 2010-01-26 | 1 | -10/+10 | |
| | ||||||
* | Implementing class level :defaults hash, instead of delivers_from et al | Mikel Lindsaar | 2010-01-26 | 1 | -3/+23 | |
| | ||||||
* | Fix small typo. | José Valim and Mikel Lindsaar | 2010-01-26 | 1 | -1/+1 | |
| | ||||||
* | Merge branch 'master' of github.com:mikel/rails | José Valim and Mikel Lindsaar | 2010-01-26 | 1 | -9/+14 | |
|\ | ||||||
| * | Refactor content type setting, added tests to ensure boundary exists on ↵ | José Valim and Mikel Lindsaar | 2010-01-26 | 1 | -9/+14 | |
| | | | | | | | | multipart and fixed typo | |||||
* | | Remove old files, add some information to docs and improve test suite. | José Valim and Mikel Lindsaar | 2010-01-26 | 2 | -22/+24 | |
|/ | ||||||
* | Got AM working with Mail yield on delivery_handler and updated tests | José Valim and Mikel Lindsaar | 2010-01-25 | 4 | -2/+19 | |
| | ||||||
* | changed test to get TestMailer to use :file delivery method directly (as ↵ | José Valim and Mikel Lindsaar | 2010-01-25 | 1 | -3/+3 | |
| | | | | setup action was resetting delivery_method to :test on init | |||||
* | Added delivery_handler method to mail and implemented in ActionMailer to ↵ | José Valim and Mikel Lindsaar | 2010-01-25 | 2 | -6/+31 | |
| | | | | deliver inside of instrumentation | |||||
* | Added delivers_from. | José Valim and Mikel Lindsaar | 2010-01-25 | 1 | -3/+6 | |
| | ||||||
* | Add some view paths tests. | José Valim and Mikel Lindsaar | 2010-01-25 | 2 | -23/+43 | |
| | ||||||
* | Ensure implicit multipart templates with locale works as expected. | José Valim and Mikel Lindsaar | 2010-01-24 | 5 | -0/+31 | |
| | ||||||
* | Add tests to mail helper. | José Valim and Mikel Lindsaar | 2010-01-24 | 9 | -138/+84 | |
| | ||||||
* | Move old tests to a specific folder and add some delivery method tests. | José Valim and Mikel Lindsaar | 2010-01-24 | 12 | -59/+113 | |
| | ||||||
* | Handle some TODOs and deprecations. | José Valim and Mikel Lindsaar | 2010-01-24 | 1 | -2/+4 | |
| | ||||||
* | Finish cleaning up delivery methods implementation. | José Valim and Mikel Lindsaar | 2010-01-24 | 2 | -12/+11 | |
| | ||||||
* | Add new class delivery method API. | José Valim and Mikel Lindsaar | 2010-01-24 | 10 | -260/+227 | |
| | ||||||
* | Adding failing tests for calling just the action, instead of ↵ | José Valim and Mikel Lindsaar | 2010-01-24 | 1 | -1/+15 | |
| | | | | :create_action_name and :deliver_action_name | |||||
* | Moving AS::Notifications call to one location in base | José Valim and Mikel Lindsaar | 2010-01-24 | 1 | -5/+2 | |
| | ||||||
* | Delegated ActionMailer::Base.deliveries to Mail.deliveries, added callback ↵ | José Valim and Mikel Lindsaar | 2010-01-24 | 7 | -9/+18 | |
| | | | | support in Mail to call ActionMailer on delivery, moved deliver to deprecated API in preparation for new API | |||||
* | Set sort order for explicit parts from the collector's template sequence | José Valim and Mikel Lindsaar | 2010-01-24 | 1 | -10/+9 | |
| |