From d63005447b143e3308c9e8e430216cd7bb144c6c Mon Sep 17 00:00:00 2001 From: Robin Dupret Date: Sat, 27 Sep 2014 16:22:15 +0200 Subject: [PATCH] Tiny follow-up to #16999 [ci skip] * Fix a typo * Remove references to Rails version * Remove an extra whitespace --- activejob/lib/active_job/queue_adapters/qu_adapter.rb | 2 +- activejob/lib/active_job/queue_adapters/sidekiq_adapter.rb | 4 ++-- guides/source/active_job_basics.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/activejob/lib/active_job/queue_adapters/qu_adapter.rb b/activejob/lib/active_job/queue_adapters/qu_adapter.rb index 79c79ee372..30aa5a4670 100644 --- a/activejob/lib/active_job/queue_adapters/qu_adapter.rb +++ b/activejob/lib/active_job/queue_adapters/qu_adapter.rb @@ -10,7 +10,7 @@ module ActiveJob # The advantages of Qu are: Multiple backends (redis, mongo), jobs are # requeued when worker is killed, resque-like API. # - # Read more about Que {here}[https://github.com/bkeepers/qu]. + # Read more about Qu {here}[https://github.com/bkeepers/qu]. # # To use Qu set the queue_adapter config to +:qu+. # diff --git a/activejob/lib/active_job/queue_adapters/sidekiq_adapter.rb b/activejob/lib/active_job/queue_adapters/sidekiq_adapter.rb index 74655cf0ca..7d80a6fd7a 100644 --- a/activejob/lib/active_job/queue_adapters/sidekiq_adapter.rb +++ b/activejob/lib/active_job/queue_adapters/sidekiq_adapter.rb @@ -6,8 +6,8 @@ module ActiveJob # # Simple, efficient background processing for Ruby. Sidekiq uses threads to # handle many jobs at the same time in the same process. It does not - # require Rails but will integrate tightly with Rails 3/4 to make - # background processing dead simple. + # require Rails but will integrate tightly with it to make background + # processing dead simple. # # Read more about Sidekiq {here}[http://sidekiq.org]. # diff --git a/guides/source/active_job_basics.md b/guides/source/active_job_basics.md index 2fd242cb2c..9c34418fab 100644 --- a/guides/source/active_job_basics.md +++ b/guides/source/active_job_basics.md @@ -99,7 +99,7 @@ If no adapter is set, the job is immediately executed. ### Backends -Active Job has built-in adapters for multiple queueing backends (Sidekiq, +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).