aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_job/base.rb
blob: e6b02708a13abebfadf7e580d2552e1112add457 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'active_job/queue_adapter'
require 'active_job/queue_name'
require 'active_job/enqueuing'
require 'active_job/performing'
require 'active_job/logging'

module ActiveJob
  class Base
    extend QueueAdapter
    extend QueueName
    extend Enqueuing
    include Performing
    extend Logging

    ActiveSupport.run_load_hooks(:active_job, self)
  end
end