aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/README.md
diff options
context:
space:
mode:
authorCristian Bica <cristian.bica@gmail.com>2014-09-21 23:20:23 +0300
committerCristian Bica <cristian.bica@gmail.com>2014-09-22 17:33:02 +0300
commitc9a4c2a5ce3eab52e2335362fe643328831a0ac4 (patch)
tree6ae34b1d5a2c938b7794854793af4244c27381b3 /activejob/README.md
parent3f39ac4ee8ea96dbd921b13485e1976c04733889 (diff)
downloadrails-c9a4c2a5ce3eab52e2335362fe643328831a0ac4.tar.gz
rails-c9a4c2a5ce3eab52e2335362fe643328831a0ac4.tar.bz2
rails-c9a4c2a5ce3eab52e2335362fe643328831a0ac4.zip
Added RDoc for each Active Job adapter
Diffstat (limited to 'activejob/README.md')
-rw-r--r--activejob/README.md19
1 files changed, 5 insertions, 14 deletions
diff --git a/activejob/README.md b/activejob/README.md
index 5734ca413e..b5d27272b1 100644
--- a/activejob/README.md
+++ b/activejob/README.md
@@ -24,9 +24,9 @@ Set the queue adapter for Active Job:
``` ruby
ActiveJob::Base.queue_adapter = :inline # default queue adapter
-# Adapters currently supported: :backburner, :delayed_job, :qu, :que, :queue_classic,
-# :resque, :sidekiq, :sneakers, :sucker_punch
```
+Note: To learn how to use your preferred queueing backend see its adapter
+documentation at ActiveJob::QueueAdapters.
Declare a job like so:
@@ -88,18 +88,9 @@ by default has been mixed into Active Record classes.
## Supported queueing systems
-We currently have adapters for:
-
-* [Backburner](https://github.com/nesquena/backburner)
-* [Delayed Job](https://github.com/collectiveidea/delayed_job)
-* [Qu](https://github.com/bkeepers/qu)
-* [Que](https://github.com/chanks/que)
-* [QueueClassic](https://github.com/ryandotsmith/queue_classic)
-* [Resque 1.x](https://github.com/resque/resque)
-* [Sidekiq](https://github.com/mperham/sidekiq)
-* [Sneakers](https://github.com/jondot/sneakers)
-* [Sucker Punch](https://github.com/brandonhilkert/sucker_punch)
-
+Active Job has built-in adapters for multiple queueing backends (Sidekiq,
+Resque, Delayed Job and others). To get an up-to-date list of the adapters
+see the API Documentation for [ActiveJob::QueueAdapters](http://api.rubyonrails.org/classes/ActiveJob/QueueAdapters.html).
## Auxiliary gems