aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/README.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-11-10 14:56:07 +0100
committerYves Senn <yves.senn@gmail.com>2014-11-10 14:56:07 +0100
commit2a843b3538bbc88286b83562fe1bb517e01576f6 (patch)
treedee79f965f7c315e650b8fd616fd0ea9aa0df032 /activejob/README.md
parent6625000b73f520abf6e0afbd5a6dde8d6b06b7cc (diff)
downloadrails-2a843b3538bbc88286b83562fe1bb517e01576f6.tar.gz
rails-2a843b3538bbc88286b83562fe1bb517e01576f6.tar.bz2
rails-2a843b3538bbc88286b83562fe1bb517e01576f6.zip
docs, minor changes in Active Job documentation. [ci skip]
Diffstat (limited to 'activejob/README.md')
-rw-r--r--activejob/README.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/activejob/README.md b/activejob/README.md
index b5d27272b1..8c83d3669a 100644
--- a/activejob/README.md
+++ b/activejob/README.md
@@ -5,7 +5,7 @@ of queueing backends. These jobs can be everything from regularly scheduled
clean-ups, to billing charges, to mailings. Anything that can be chopped up into
small units of work and run in parallel, really.
-It also serves as the backend for ActionMailer's #deliver_later functionality
+It also serves as the backend for Action Mailer's #deliver_later functionality
that makes it easy to turn any mailing into a job for running later. That's
one of the most common jobs in a modern web application: Sending emails outside
of the request-response cycle, so the user doesn't have to wait on it.
@@ -26,7 +26,8 @@ Set the queue adapter for Active Job:
ActiveJob::Base.queue_adapter = :inline # default queue adapter
```
Note: To learn how to use your preferred queueing backend see its adapter
-documentation at ActiveJob::QueueAdapters.
+documentation at
+[ActiveJob::QueueAdapters](http://api.rubyonrails.org/classes/ActiveJob/QueueAdapters.html).
Declare a job like so:
@@ -110,7 +111,7 @@ Source code can be downloaded as part of the Rails project on GitHub
## License
-ActiveJob is released under the MIT license:
+Active Job is released under the MIT license:
* http://www.opensource.org/licenses/MIT
@@ -128,5 +129,3 @@ Bug reports can be filed for the Ruby on Rails project here:
Feature requests should be discussed on the rails-core mailing list here:
* https://groups.google.com/forum/?fromgroups#!forum/rubyonrails-core
-
-