aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index e8e12e859c..1be57a1808 100644
--- a/README.md
+++ b/README.md
@@ -32,6 +32,8 @@ Declare a job like so:
```ruby
class MyJob < ActiveJob::Base
+ queue_as :my_jobs
+
def perform(record)
record.do_work
end
@@ -88,6 +90,10 @@ We currently have adapters for:
* [Sneakers](https://github.com/jondot/sneakers)
* [Sucker Punch](https://github.com/brandonhilkert/sucker_punch)
+We would like to have adapters for:
+
+* [Resque 2.x](https://github.com/resque/resque) (see [#7](https://github.com/rails/activejob/issues/7))
+
## Under development as a gem, targeted for Rails inclusion