forked from rubocop/rubocop-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication_job.rb
45 lines (40 loc) · 1.17 KB
/
application_job.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true
module RuboCop
module Cop
module Rails
# Checks that jobs subclass `ApplicationJob` with Rails 5.0.
#
# @safety
# This cop's autocorrection is unsafe because it may let the logic from `ApplicationJob`
# sneak into a job that is not purposed to inherit logic common among other jobs.
#
# @example
#
# # good
# class Rails5Job < ApplicationJob
# # ...
# end
#
# # bad
# class Rails4Job < ActiveJob::Base
# # ...
# end
class ApplicationJob < Base
extend AutoCorrector
extend TargetRailsVersion
minimum_target_rails_version 5.0
MSG = 'Jobs should subclass `ApplicationJob`.'
SUPERCLASS = 'ApplicationJob'
BASE_PATTERN = '(const (const {nil? cbase} :ActiveJob) :Base)'
# rubocop:disable Layout/ClassStructure
include RuboCop::Cop::EnforceSuperclass
# rubocop:enable Layout/ClassStructure
def autocorrect(node)
lambda do |corrector|
corrector.replace(node, self.class::SUPERCLASS)
end
end
end
end
end
end