diff options
author | Zachary Scott <e@zzak.io> | 2014-11-03 19:25:44 -0800 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-11-03 19:25:44 -0800 |
commit | 7ea0f26801ba6efe4b21d4fcb46a290b271695cd (patch) | |
tree | 5cbcf02b3cd09a2333173121247fed8eedcfca7e /activejob/lib | |
parent | 60fcf60c7b4e6e01e61f7d000812218e50a8bd5d (diff) | |
download | rails-7ea0f26801ba6efe4b21d4fcb46a290b271695cd.tar.gz rails-7ea0f26801ba6efe4b21d4fcb46a290b271695cd.tar.bz2 rails-7ea0f26801ba6efe4b21d4fcb46a290b271695cd.zip |
Add documentation of AJ::QueueAdapter class methods module [ci skip]
Diffstat (limited to 'activejob/lib')
-rw-r--r-- | activejob/lib/active_job/queue_adapter.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activejob/lib/active_job/queue_adapter.rb b/activejob/lib/active_job/queue_adapter.rb index b42ec3b638..85d7c44bb8 100644 --- a/activejob/lib/active_job/queue_adapter.rb +++ b/activejob/lib/active_job/queue_adapter.rb @@ -7,6 +7,7 @@ module ActiveJob module QueueAdapter #:nodoc: extend ActiveSupport::Concern + # Includes the setter method for changing the active queue adapter. module ClassMethods mattr_reader(:queue_adapter) { ActiveJob::QueueAdapters::InlineAdapter } |