Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Move set_fields! to the old API module. | José Valim | 2010-04-12 | 1 | -27/+16 | |
| | ||||||
* | Added explict setting of charset in set_fields! method to make sure Mail has ↵ | Mikel Lindsaar | 2010-04-11 | 1 | -0/+1 | |
| | | | | the user defined default | |||||
* | Removing quoting.rb, upgrade to 2.1.3.6, changing all utf-8 references to ↵ | Mikel Lindsaar | 2010-04-11 | 1 | -12/+11 | |
| | | | | UTF-8, updating tests where incorrect encoding | |||||
* | Replace the placeholder base_hook API with on_load. To specify some code that | wycats | 2010-03-29 | 1 | -1/+1 | |
| | | | | | | | | should run during framework load do: ActiveSupport.on_load(:action_controller) do # Code run in the context of AC::Base end | |||||
* | adds missing requires for Object#blank? and Object#present? | Xavier Noria | 2010-03-28 | 1 | -0/+1 | |
| | ||||||
* | Ensure details are frozen after @details_keys lookup. The implementation ↵ | José Valim | 2010-03-27 | 1 | -1/+1 | |
| | | | | waits to freeze until the last required moment, to avoid duping hashes. | |||||
* | Improve performance of the rendering stack by freezing formats as a sign ↵ | José Valim | 2010-03-19 | 1 | -0/+2 | |
| | | | | that they shouldn't be further modified. | |||||
* | Use Array.wrap not Array() | Jeremy Kemper | 2010-03-17 | 1 | -1/+2 | |
| | ||||||
* | Allow anything that responds to render to be given as :template and use ↵ | José Valim | 2010-03-12 | 1 | -1/+1 | |
| | | | | find_template instead of find in views. | |||||
* | Clean up the API required from ActionView::Template. | José Valim | 2010-03-09 | 1 | -1/+1 | |
| | ||||||
* | Merge master. | José Valim | 2010-03-08 | 1 | -0/+2 | |
|\ | ||||||
| * | Make many parts of Rails lazy. In order to facilitate this, | wycats | 2010-03-07 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | add lazy_load_hooks.rb, which allows us to declare code that should be run at some later time. For instance, this allows us to defer requiring ActiveRecord::Base at boot time purely to apply configuration. Instead, we register a hook that should apply configuration once ActiveRecord::Base is loaded. With these changes, brings down total boot time of a new app to 300ms in production and 400ms in dev. TODO: rename base_hook | |||||
* | | Bring AM up to date with new rendering stack. | José Valim | 2010-03-08 | 1 | -7/+5 | |
| | | ||||||
* | | Move layout lookup to views. | José Valim | 2010-03-08 | 1 | -1/+0 | |
| | | ||||||
* | | Added template lookup responsible to hold all information used in template ↵ | José Valim | 2010-03-07 | 1 | -1/+0 | |
|/ | | | | lookup. | |||||
* | Renamed LocalizedCache to DetailsCache. | José Valim | 2010-02-24 | 1 | -1/+1 | |
| | ||||||
* | Use render instead render_to_body. | José Valim | 2010-02-24 | 1 | -1/+1 | |
| | ||||||
* | Adding options to register observers and interceptors through ↵ | Mikel Lindsaar | 2010-02-22 | 1 | -0/+15 | |
| | | | | | | 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> | |||||
* | Allow to choose the template path and template name used in implicit ↵ | José Valim | 2010-02-19 | 1 | -25/+45 | |
| | | | | rendering with ActionMailer. | |||||
* | fix usage examples and more to use new invocations | RomD | 2010-02-06 | 1 | -1/+1 | |
| | | | | Signed-off-by: Carl Lerche <carllerche@mac.com> | |||||
* | Convert to class_attribute | Jeremy Kemper | 2010-02-01 | 1 | -5/+5 | |
| | ||||||
* | Updating Action Mailer documentation | Mikel Lindsaar | 2010-01-31 | 1 | -44/+54 | |
| | ||||||
* | Fix some backward incompatible behavior on AM. | José Valim | 2010-01-30 | 1 | -0/+1 | |
| | ||||||
* | ActionMailer should depend just on AbstractController. | José Valim | 2010-01-29 | 1 | -6/+0 | |
| | ||||||
* | Rename 'defaults' class method to 'default' to reflect that it's a declaration | Jeremy Kemper | 2010-01-27 | 1 | -14/+14 | |
| | ||||||
* | Fixed bug on HTML only emails getting set to text/plain | Mikel Lindsaar | 2010-01-28 | 1 | -1/+1 | |
| | ||||||
* | Also include translation in ActionMailer. | José Valim | 2010-01-26 | 1 | -0/+1 | |
| | ||||||
* | Tidy up tests and docs. | José Valim and Mikel Lindsaar | 2010-01-26 | 1 | -2/+2 | |
| | ||||||
* | Fixing up tests and docs to use defaults :from => 'name' instead of ↵ | Mikel Lindsaar | 2010-01-27 | 1 | -1/+2 | |
| | | | | defaults({:from => 'name'}) | |||||
* | Merge branch 'master' of github.com:mikel/rails | Mikel Lindsaar | 2010-01-27 | 1 | -19/+6 | |
|\ | | | | | | | | | Conflicts: actionmailer/lib/action_mailer/base.rb | |||||
| * | Deprecate old defaults API. | José Valim and Mikel Lindsaar | 2010-01-26 | 1 | -25/+6 | |
| | | ||||||
* | | Fixed up documentation to reflect code change and cleaned up tests of ↵ | Mikel Lindsaar | 2010-01-27 | 1 | -21/+19 | |
| | | | | | | | | spurious #deliver calls | |||||
* | | Fixed up being able to pass random headers in with headers, or mail. Also, ↵ | Mikel Lindsaar | 2010-01-27 | 1 | -11/+20 | |
|/ | | | | undeprecated headers(hash) as this works now too | |||||
* | Make defaults accept a hash. | José Valim and Mikel Lindsaar | 2010-01-26 | 1 | -37/+41 | |
| | ||||||
* | Implementing class level :defaults hash, instead of delivers_from et al | Mikel Lindsaar | 2010-01-26 | 1 | -13/+26 | |
| | ||||||
* | Merge branch 'master' of github.com:mikel/rails | José Valim and Mikel Lindsaar | 2010-01-26 | 1 | -9/+22 | |
|\ | ||||||
| * | Refactor content type setting, added tests to ensure boundary exists on ↵ | José Valim and Mikel Lindsaar | 2010-01-26 | 1 | -9/+22 | |
| | | | | | | | | multipart and fixed typo | |||||
* | | Remove old files, add some information to docs and improve test suite. | José Valim and Mikel Lindsaar | 2010-01-26 | 1 | -14/+34 | |
|/ | ||||||
* | We don't support enriched yet | José Valim and Mikel Lindsaar | 2010-01-26 | 1 | -1/+0 | |
| | ||||||
* | Added initial documentation for the new API | José Valim and Mikel Lindsaar | 2010-01-25 | 1 | -98/+159 | |
| | ||||||
* | Got AM working with Mail yield on delivery_handler and updated tests | José Valim and Mikel Lindsaar | 2010-01-25 | 1 | -8/+1 | |
| | ||||||
* | Added delivery_handler method to mail and implemented in ActionMailer to ↵ | José Valim and Mikel Lindsaar | 2010-01-25 | 1 | -2/+11 | |
| | | | | deliver inside of instrumentation | |||||
* | Added delivers_from. | José Valim and Mikel Lindsaar | 2010-01-25 | 1 | -2/+12 | |
| | ||||||
* | Ensure implicit multipart templates with locale works as expected. | José Valim and Mikel Lindsaar | 2010-01-24 | 1 | -0/+5 | |
| | ||||||
* | Add tests to mail helper. | José Valim and Mikel Lindsaar | 2010-01-24 | 1 | -1/+0 | |
| | ||||||
* | Move old tests to a specific folder and add some delivery method tests. | José Valim and Mikel Lindsaar | 2010-01-24 | 1 | -9/+1 | |
| | ||||||
* | Handle some TODOs and deprecations. | José Valim and Mikel Lindsaar | 2010-01-24 | 1 | -19/+20 | |
| | ||||||
* | Finish cleaning up delivery methods implementation. | José Valim and Mikel Lindsaar | 2010-01-24 | 1 | -28/+1 | |
| | ||||||
* | Maintain old_api and deprecated_api in different files. | José Valim and Mikel Lindsaar | 2010-01-24 | 1 | -0/+1 | |
| | ||||||
* | Add new class delivery method API. | José Valim and Mikel Lindsaar | 2010-01-24 | 1 | -1/+17 | |
| |