Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [ci skip] Add code example for MailHelper#block_format documentation | Anton Davydov | 2015-03-02 | 1 | -1/+11 |
| | |||||
* | Added default values for #format_paragraph docs [skip ci] | Anton Davydov | 2015-02-15 | 1 | -0/+2 |
| | |||||
* | Allow attaching files while the mail view is rendered | Christian Felder (masone) | 2014-09-22 | 1 | -1/+1 |
| | |||||
* | Remove unused block parameter from #gsub call in AM::MailHelper#block_format | Viktar Basharymau | 2014-06-19 | 1 | -2/+2 |
| | |||||
* | map => map! for stopping extra array creation | Rajarshi Das | 2013-08-02 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2013-05-19 | 1 | -0/+3 |
|\ | |||||
| * | Revert "nodoc ActionMailer module from lib/action_mailer/*.rb" | Vijay Dev | 2013-05-19 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | This reverts commit 328e876a1569058e47eaf7ea3f4f045a83b585fa. Reason: Let's not nodoc without reason. [ci skip] | ||||
| * | nodoc ActionMailer module from lib/action_mailer/*.rb | Zachary Scott | 2013-05-15 | 1 | -1/+1 |
| | | |||||
| * | Document ActionMailer::MailHelper | Zachary Scott | 2013-05-15 | 1 | -0/+3 |
| | | |||||
* | | Extract variable out of loop | Vipul A M | 2013-05-13 | 1 | -1/+2 |
|/ | |||||
* | update ActionMailer documentation [ci skip] | Francesco Rodriguez | 2012-09-17 | 1 | -4/+3 |
| | |||||
* | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2012-02-18 | 1 | -2/+1 |
|\ | |||||
| * | Fix AM block_format helper method description | Alexey Vakhov | 2012-02-15 | 1 | -2/+1 |
| | | |||||
* | | Fix AM format_paragraph helper method if a first word is long | Alexey Vakhov | 2012-02-15 | 1 | -1/+1 |
| | | |||||
* | | Cosmetic fixes in block_format AM helper method + test | Alexey Vakhov | 2012-02-15 | 1 | -2/+2 |
|/ | |||||
* | Fix typo | Santiago Pastorino | 2011-03-09 | 1 | -1/+1 |
| | |||||
* | publicise ActionMailer::MailHelper.format_paragraph | Diego Carrion | 2011-03-09 | 1 | -1/+8 |
| | | | | | | [#6550 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | Rename conflicting ActionMailer::MailHelper#simple_format method | Mat Brown | 2011-03-09 | 1 | -2/+2 |
| | | | | | This was conflicting with ActionView::Helpers::TextHelper#simple_format from within email templates. | ||||
* | removing text-format in favor of a more simple solution | Aaron Patterson | 2011-02-09 | 1 | -10/+18 |
| | |||||
* | Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵ | Santiago Pastorino | 2010-08-14 | 1 | -2/+2 |
| | | | | 's/[ \t]*$//' -i {} \;) | ||||
* | Adding inline attachment support to ActionMailer | Mikel Lindsaar | 2010-06-07 | 1 | -0/+5 |
| | |||||
* | Unforce text-format from AM | Santiago Pastorino | 2010-06-03 | 1 | -0/+7 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Add tests to mail helper. | José Valim and Mikel Lindsaar | 2010-01-24 | 1 | -2/+2 |
| | |||||
* | Move old tests to a specific folder and add some delivery method tests. | José Valim and Mikel Lindsaar | 2010-01-24 | 1 | -1/+1 |
| | |||||
* | Added basic explicit multipart rendering and tests | José Valim and Mikel Lindsaar | 2010-01-23 | 1 | -1/+1 |
| | |||||
* | Add basic template rendering to new DSL. | José Valim and Mikel Lindsaar | 2010-01-22 | 1 | -1/+1 |
| | |||||
* | Moved deprecated_body.rb to deprecatead_api.rb | José Valim and Mikel Lindsaar | 2010-01-22 | 1 | -0/+5 |
| | |||||
* | Merge Mail with latest Rails and move mail gem to Gemfile. | José Valim | 2009-12-27 | 1 | -0/+5 |
|\ | |||||
| * | adv_attr_accessors in ActionMailer are not sent to the views, use the mailer ↵ | José Valim | 2009-12-25 | 1 | -0/+5 |
| | | | | | | | | object if you need to access the subject, recipients, from, etc. | ||||
* | | Merged in latest changes from rails/master | Mikel Lindsaar | 2009-12-17 | 1 | -0/+19 |
| | | |||||
* | | Fixes for working with 1.9.1-head | Mikel Lindsaar | 2009-12-17 | 1 | -19/+0 |
|/ | |||||
* | Reorganize autoloads: | Carlhuda | 2009-12-02 | 1 | -14/+16 |
| | | | | | | | | | | | | | | | | | | | | | * 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. | ||||
* | use autoload instead of explicit requires for ActionMailer | Joshua Peek | 2008-11-23 | 1 | -2/+0 |
| | |||||
* | Update/extend ActionMailer documentation (rdoc) | Jamis Buck | 2005-10-16 | 1 | -1/+3 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2648 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Fix vendor require paths to prevent files being required twice | Jamis Buck | 2005-09-05 | 1 | -2/+2 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2130 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Initial | David Heinemeier Hansson | 2004-11-24 | 1 | -0/+17 |
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4 5ecf4fe2-1ee6-0310-87b1-e25e094e27de |