aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2019-03-09 22:54:21 +0100
committerGitHub <noreply@github.com>2019-03-09 22:54:21 +0100
commit0fc13977841d0fb5aa78d5bd86fa9a540477009f (patch)
treebbd322bc9be143e5426682442aee1dc7d61c8c32 /activejob
parent6c0afaca98758e87a05752e1f4f8f2029d6d9664 (diff)
parente3ef12b310abdbc1688c3dc4c9b7c48209ce6da2 (diff)
downloadrails-0fc13977841d0fb5aa78d5bd86fa9a540477009f.tar.gz
rails-0fc13977841d0fb5aa78d5bd86fa9a540477009f.tar.bz2
rails-0fc13977841d0fb5aa78d5bd86fa9a540477009f.zip
Merge pull request #35559 from ashishprajapati/ashishprajapati/important_textual_improvements
Added missing guide links in documentation and minor wording fix
Diffstat (limited to 'activejob')
-rw-r--r--activejob/README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/activejob/README.md b/activejob/README.md
index d17711c0be..462d319992 100644
--- a/activejob/README.md
+++ b/activejob/README.md
@@ -1,4 +1,4 @@
-# Active Job -- Make work happen later
+# Active Job – Make work happen later
Active Job is a framework for declaring jobs and making them run on a variety
of queuing backends. These jobs can be everything from regularly scheduled
@@ -17,6 +17,7 @@ about API differences between Delayed Job and Resque. Picking your queuing
backend becomes more of an operational concern, then. And you'll be able to
switch between them without having to rewrite your jobs.
+You can read more about Active Job in the [Active Job Basics](https://edgeguides.rubyonrails.org/active_job_basics.html) guide.
## Usage