aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/lib/active_job/queue_adapters.rb
diff options
context:
space:
mode:
authorAlberto Almagro <alberto.almagro@rakuten.com>2018-03-19 21:25:39 +0100
committerAlberto Almagro <alberto.almagro@rakuten.com>2018-03-19 21:27:16 +0100
commit6ef720791d6532a107f4777edfe1d708b6b9c068 (patch)
treec6ce9a6aabe6654af03384bd8de7b4a1b71ef3b1 /activejob/lib/active_job/queue_adapters.rb
parent538463bce782e58ea72d130315cc510dab50777d (diff)
downloadrails-6ef720791d6532a107f4777edfe1d708b6b9c068.tar.gz
rails-6ef720791d6532a107f4777edfe1d708b6b9c068.tar.bz2
rails-6ef720791d6532a107f4777edfe1d708b6b9c068.zip
Remove support for Qu gem.
Reasons are that the Qu gem wasn't compatible since Rails 5.1, gem development was stopped in 2014 and maintainers have confirmed its demise. See issue #32273
Diffstat (limited to 'activejob/lib/active_job/queue_adapters.rb')
-rw-r--r--activejob/lib/active_job/queue_adapters.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/activejob/lib/active_job/queue_adapters.rb b/activejob/lib/active_job/queue_adapters.rb
index 1bbf7b1055..7854467cc1 100644
--- a/activejob/lib/active_job/queue_adapters.rb
+++ b/activejob/lib/active_job/queue_adapters.rb
@@ -7,7 +7,6 @@ module ActiveJob
#
# * {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]
# * {queue_classic}[https://github.com/QueueClassic/queue_classic]
# * {Resque}[https://github.com/resque/resque]
@@ -24,7 +23,6 @@ module ActiveJob
# |-------------------|-------|--------|------------|------------|---------|---------|
# | Backburner | Yes | Yes | Yes | Yes | Job | Global |
# | Delayed Job | Yes | Yes | Yes | Job | Global | Global |
- # | Qu | Yes | Yes | No | No | No | Global |
# | Que | Yes | Yes | Yes | Job | No | Job |
# | queue_classic | Yes | Yes | Yes* | No | No | No |
# | Resque | Yes | Yes | Yes (Gem) | Queue | Global | Yes |
@@ -115,7 +113,6 @@ module ActiveJob
autoload :InlineAdapter
autoload :BackburnerAdapter
autoload :DelayedJobAdapter
- autoload :QuAdapter
autoload :QueAdapter
autoload :QueueClassicAdapter
autoload :ResqueAdapter