aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authorashishprajapati <ashishprajapati0404@gmail.com>2019-03-10 03:17:01 +0530
committerashishprajapati <ashishprajapati0404@gmail.com>2019-03-10 03:17:01 +0530
commite3ef12b310abdbc1688c3dc4c9b7c48209ce6da2 (patch)
tree0a90e68bd1cc36efcc42adb5bc5d3b48824d6f7c /activejob
parent788272231cb75d9de454c45881421db9afea74cd (diff)
downloadrails-e3ef12b310abdbc1688c3dc4c9b7c48209ce6da2.tar.gz
rails-e3ef12b310abdbc1688c3dc4c9b7c48209ce6da2.tar.bz2
rails-e3ef12b310abdbc1688c3dc4c9b7c48209ce6da2.zip
Added missing guide links in README documentation and minor wording fix [ci skip]
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 a2a5289ab7..5c4184f426 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