aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2014-05-19 13:14:09 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2014-05-19 13:14:09 +0200
commitc2cdb8beccc6dda9f6b4d89498a32807bbffd84d (patch)
treed97c6c6d1be96e330ec6120ca76761e26ee5c61f /README.md
parentc69dda49880df94c7243e9dc5fcf43a223769f43 (diff)
parent60b8af42e929adc397b92877a3274b9bfd110c4b (diff)
downloadrails-c2cdb8beccc6dda9f6b4d89498a32807bbffd84d.tar.gz
rails-c2cdb8beccc6dda9f6b4d89498a32807bbffd84d.tar.bz2
rails-c2cdb8beccc6dda9f6b4d89498a32807bbffd84d.zip
Merge branch 'master' of github.com:rails/activejob
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 4c442e08c4..08e24844fe 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.
@@ -41,7 +41,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: