Skip to content

Commit

Permalink
Merge pull request rails#17469 from rishijain/update_docs_2
Browse files Browse the repository at this point in the history
added punctuations, and role of queue_adapter module [ci skip]
  • Loading branch information
Zachary Scott committed Nov 2, 2014
2 parents 8b611b7 + 19f6ac9 commit 26126c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions activejob/lib/active_job/queue_adapter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
require 'active_support/core_ext/string/inflections'

module ActiveJob
# The <tt>ActionJob::QueueAdapter</tt> module is used to load the
# correct adapter. The default queue adapter is the :inline queue.
module QueueAdapter #:nodoc:
extend ActiveSupport::Concern

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ module QueueAdapters
#
# Delayed::Job (or DJ) encapsulates the common pattern of asynchronously
# executing longer tasks in the background. Although DJ can have many
# storage backends one of the most used is based on Active Record.
# storage backends, one of the most used is based on Active Record.
# Read more about Delayed Job {here}[https://github.com/collectiveidea/delayed_job].
#
# To use Delayed Job set the queue_adapter config to +:delayed_job+.
# To use Delayed Job, set the queue_adapter config to +:delayed_job+.
#
# Rails.application.config.active_job.queue_adapter = :delayed_job
class DelayedJobAdapter
Expand Down

0 comments on commit 26126c8

Please sign in to comment.