aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2014-05-20 12:19:14 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2014-05-20 12:19:14 +0200
commit34f0e4240e7c7f18c1925dcd8d33e1282aec6e60 (patch)
tree8c6581b5eb364c7afe06e1168b93dcef0f8ffad8 /README.md
parent9d34727c7b2196e225c4a79519c43bdc2d4fdc6a (diff)
downloadrails-34f0e4240e7c7f18c1925dcd8d33e1282aec6e60.tar.gz
rails-34f0e4240e7c7f18c1925dcd8d33e1282aec6e60.tar.bz2
rails-34f0e4240e7c7f18c1925dcd8d33e1282aec6e60.zip
Update README with queue_as example and the desire for a Resque 2.x adapter
Diffstat (limited to 'README.md')
-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