aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@basecamp.com>2014-05-19 13:01:33 +0200
committerDavid Heinemeier Hansson <david@basecamp.com>2014-05-19 13:01:33 +0200
commitc47d6b499078b13cc7a75f520757b78c1a52d852 (patch)
tree48e2892cbd12089b6b0c4180ae42114e8e20d186
parentd3d5308d13f6a8f051ea86509f948b4fe037d1ee (diff)
downloadrails-c47d6b499078b13cc7a75f520757b78c1a52d852.tar.gz
rails-c47d6b499078b13cc7a75f520757b78c1a52d852.tar.bz2
rails-c47d6b499078b13cc7a75f520757b78c1a52d852.zip
Update README.md
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index dbd31d91ce..1b9e20c0d0 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ of queueing backends. These jobs can be everything from regularly scheduled
clean-ups, billing charges, or 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 [ActionMailer's #deliver_later functionality][https://github.com/rails/activejob/issues/13]
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.
@@ -34,7 +34,7 @@ That's it!
## GlobalID support
-Active Job supports GlobalID serialization for parameters. This makes it possible
+Active Job supports [GlobalID serialization][https://github.com/rails/activemodel-globalid/] for parameters. This makes it possible
to pass live Active Record objects to your job instead of class/id pairs, which
you then have to manually deserialize. Before, jobs would look like this: