aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test
Commit message (Collapse)AuthorAgeFilesLines
...
| * Moved sort_parts into Mail, updated mail requirement to 1.4.2Mikel Lindsaar2009-12-281-7/+5
| |
| * Getting rid of some warnings in AM suite.José Valim2009-12-274-8/+10
| |
| * Merge Mail with latest Rails and move mail gem to Gemfile.José Valim2009-12-274-26/+55
| |\
| | * adv_attr_accessors in ActionMailer are not sent to the views, use the mailer ↵José Valim2009-12-252-11/+46
| | | | | | | | | | | | object if you need to access the subject, recipients, from, etc.
| | * Make ActionMailer::Base inherit from AbstractController::BaseJosé Valim2009-12-222-5/+7
| | | | | | | | | | | | Signed-off-by: Yehuda Katz <wycats@Yehuda-Katz.local>
| * | Changing body to use :to_s instead of :decoded... better use caseMikel Lindsaar2009-12-276-38/+38
| | |
| * | Updating actionmailer to call :to_s on all field values instead of decodedMikel Lindsaar2009-12-271-8/+8
| | |
| * | Merged in latest changes from rails/masterMikel Lindsaar2009-12-171-1/+1
| | |
| * | Fixes for working with 1.9.1-headMikel Lindsaar2009-12-172-3/+9
| | |
| * | Merge branch 'rails'Mikel Lindsaar2009-12-173-27/+58
| |\| | | | | | | | | | | | | | | | Conflicts: actionmailer/lib/action_mailer.rb actionmailer/lib/action_mailer/delivery_method/smtp.rb
| | * Fully expand relative rails framework paths and make sure we aren'tJoshua Peek2009-12-161-5/+2
| | | | | | | | | | | | adding any to the load path more than once.
| | * Define a welcome controller in mailer testsJoshua Peek2009-11-291-22/+22
| | |
| | * avoid generating invalid SMTP commands in ruby pre 1.9Michael Koziarski2009-11-281-0/+34
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com> Conflicts: actionmailer/lib/action_mailer/base.rb
| * | Merge branch 'master' of git://github.com/rails/rails into rails_masterMikel Lindsaar2009-11-242-2/+4
| |\|
* | | Merge commit 'mikel/master' into mailJeremy Kemper2009-11-232-8/+18
|\| | | | | | | | | | | | | | Conflicts: actionmailer/lib/action_mailer.rb
| * | Fixed up incompatible encoding problem for Ruby 1.9 in test suiteMikel Lindsaar2009-11-232-3/+13
| | |
| * | Deprecating attachment :body => 'string' in favour of attachment :data => ↵Mikel Lindsaar2009-11-231-5/+5
| | | | | | | | | | | | 'string'
* | | Never require jcodeJeremy Kemper2009-11-221-1/+0
| | |
* | | Merge commit 'origin/master' into mailJeremy Kemper2009-11-222-2/+4
|\ \ \ | |/ / |/| / | |/
| * Avoid adding component lib/ to load path multiple timesJoshua Peek2009-11-091-1/+3
| |
| * Change mailer subjects lookup.José Valim2009-11-091-1/+1
| |
* | 131 tests, 309 assertions, 0 failures, 0 errorsMikel Lindsaar2009-11-223-38/+47
| |
* | Updating tests for Mail gemMikel Lindsaar2009-11-222-2/+2
| |
* | 131 tests, 266 assertions, 9 failures, 6 errorsMikel Lindsaar2009-11-212-13/+13
| |
* | Down to 13 failures, 14 errorsMikel Lindsaar2009-11-201-6/+13
| |
* | Down to 30 failures totalMikel Lindsaar2009-11-204-46/+92
| |
* | More updates... 45 errors left to get it working with Mail gemMikel Lindsaar2009-11-206-48/+62
| |
* | Starting again on actionmailer integration with mailMikel Lindsaar2009-11-129-80/+112
|/
* Use I18n on ActionMailer subjects by default.José Valim2009-11-011-0/+15
|
* Make tests run without deprecation warning (just one left).José Valim2009-11-015-77/+108
|
* Another refactoring on AM. body is deprecated, use render instead.José Valim2009-11-011-6/+2
|
* Move all render and layout pieces required in ActionMailer from ↵José Valim2009-11-011-1/+14
| | | | ActionController to AbstractController.
* Remove ActionMailer helpers and rely on AbstractController one.José Valim2009-11-011-3/+7
|
* abstract all of the ActionMailer delivery methods into their own classes. ↵Matthew Rudy Jacobs2009-11-013-6/+34
| | | | | | | | | | | | | | | | | | | | | | 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>
* Have all the tests running off a single GemfileYehuda Katz + Carl Lerche2009-10-201-7/+7
|
* Need to use "use_controllers" for nonexistent controller in AM testJoshua Peek2009-10-181-21/+23
|
* Change config implementation in AV slightlyYehuda Katz2009-10-151-1/+1
|
* Fix AM tests by configuring AVJeremy Kemper2009-10-151-0/+2
|
* Don't push siblings on load path if using bundled envJeremy Kemper2009-10-141-2/+8
|
* Mark html safetyJeremy Kemper2009-10-091-1/+1
|
* Get rid of parenthesize argument warningsPratik Naik2009-08-091-5/+5
|
* Adds a :file delivery_method to save email to a file on diskEric Davis2009-08-082-0/+34
| | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com> [#2438 state:committed]
* Default sent_on time to now in ActionMailerMatt Duncan2009-08-081-2/+3
| | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com> [#2607 state:committed]
* Replace _render_template_with_layout with _render_template since the layout ↵Yehuda Katz2009-08-071-4/+6
| | | | is optional
* Move mocha down below initial T::U require and bump version to 0.9.7 [#2858 ↵Yehuda Katz + Carl Lerche2009-07-011-3/+0
| | | | state:resolved]
* Fix failing CI test (broken in 2daac47 or e693f45): make ↵Chad Woolley2009-05-272-5/+6
| | | | | | test_multipart_with_template_path_with_dots only test path with dots, and stop failing on unrelated mimetype assertion. The image/jpeg multipart content type is already tested in test_explicitly_multipart_messages. Signed-off-by: Yehuda Katz <wycats@yehuda-katzs-macbookpro41.local>
* Move misplaced testJeremy Kemper2009-05-221-0/+18
|
* Fixes ActionMailer to work with the ActionView refactoringYehuda Katz + Carl Lerche2009-04-271-2/+2
|
* Refactor ActionView::PathYehuda Katz + Carl Lerche2009-04-2212-9/+7
| | | | | | | | * Decouple from ActionController and ActionMailer * Bring back localization support. * Prepare to decouple templates from the filesystem. * Prepare to decouple localization from ActionView * Fix ActionMailer to take advantage of ActionView::Path
* Bring abstract_controller up to date with rails/masterCarl Lerche & Yehuda Katz2009-04-134-18/+40
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolved all the conflicts since 2.3.0 -> HEAD. Following is a list of commits that could not be applied cleanly or are obviated with the abstract_controller refactor. They all need to be revisited to ensure that fixes made in 2.3 do not reappear in 3.0: 2259ecf368e6a6715966f69216e3ee86bf1a82a7 AR not available * This will be reimplemented with ActionORM or equivalent 06182ea02e92afad579998aa80144588e8865ac3 implicitly rendering a js response should not use the default layout [#1844 state:resolved] * This will be handled generically 893e9eb99504705419ad6edac14d00e71cef5f12 Improve view rendering performance in development mode and reinstate template recompiling in production [#1909 state:resolved] * We will need to reimplement rails-dev-boost on top of the refactor; the changes here are very implementation specific and cannot be cleanly applied. The following commits are implicated: 199e750d46c04970b5e7684998d09405648ecbd4 3942cb406e1d5db0ac00e03153809cc8dc4cc4db f8ea9f85d4f1e3e6f3b5d895bef6b013aa4b0690 e3b166aab37ddc2fbab030b146eb61713b91bf55 ae9f258e03c9fd5088da12c1c6cd216cc89a01f7 44423126c6f6133a1d9cf1d0832b527e8711d40f 0cb020b4d6d838025859bd60fb8151c8e21b8e84 workaround for picking layouts based on wrong view_paths [#1974 state:resolved] * The specifics of this commit no longer apply. Since it is a two-line commit, we will reimplement this change. 8c5cc66a831aadb159f3daaffa4208064c30af0e make action_controller/layouts pick templates from the current instance's view_paths instead of the class view_paths [#1974 state:resolved] * This does not apply at all. It should be trivial to apply the feature to the reimplemented ActionController::Base. 87e8b162463f13bd50d27398f020769460a770e3 fix HTML fallback for explicit templates [#2052 state:resolved] * There were a number of patches related to this that simply compounded each other. Basically none of them apply cleanly, and the underlying issue needs to be revisited. After discussing the underlying problem with Koz, we will defer these fixes for further discussion.