aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-09-12 15:50:46 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-09-12 15:50:46 -0300
commita25b5f683d6d7c1a9678227c2e067bcf3882bc2c (patch)
treec9952c1cf281722b63771d92b1b065817e8a94b5 /actionmailer
parentd0c25f253f43acba6ce27a1d3116c16fa4d3b536 (diff)
downloadrails-a25b5f683d6d7c1a9678227c2e067bcf3882bc2c.tar.gz
rails-a25b5f683d6d7c1a9678227c2e067bcf3882bc2c.tar.bz2
rails-a25b5f683d6d7c1a9678227c2e067bcf3882bc2c.zip
Updating the documentation to ActionMailer::Base.queue
Diffstat (limited to 'actionmailer')
-rw-r--r--actionmailer/lib/action_mailer/base.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb
index 9cc00ca5a1..26787c9b5e 100644
--- a/actionmailer/lib/action_mailer/base.rb
+++ b/actionmailer/lib/action_mailer/base.rb
@@ -363,6 +363,9 @@ module ActionMailer #:nodoc:
# * <tt>deliveries</tt> - Keeps an array of all the emails sent out through the Action Mailer with
# <tt>delivery_method :test</tt>. Most useful for unit and functional testing.
#
+ # * <tt>queue</> - The queue that will be used to deliver the mail. The queue should expect a job that
+ # responds to <tt>run</tt>
+ #
class Base < AbstractController::Base
include DeliveryMethods
abstract!