forked from rubocop/rubocop-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
application_mailer.rb
39 lines (35 loc) · 1.06 KB
/
application_mailer.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
# frozen_string_literal: true
module RuboCop
module Cop
module Rails
# Checks that mailers subclass `ApplicationMailer` with Rails 5.0.
#
# @safety
# This cop's autocorrection is unsafe because it may let the logic from `ApplicationMailer`
# sneak into a mailer that is not purposed to inherit logic common among other mailers.
#
# @example
#
# # good
# class MyMailer < ApplicationMailer
# # ...
# end
#
# # bad
# class MyMailer < ActionMailer::Base
# # ...
# end
class ApplicationMailer < Base
extend AutoCorrector
extend TargetRailsVersion
minimum_target_rails_version 5.0
MSG = 'Mailers should subclass `ApplicationMailer`.'
SUPERCLASS = 'ApplicationMailer'
BASE_PATTERN = '(const (const {nil? cbase} :ActionMailer) :Base)'
# rubocop:disable Layout/ClassStructure
include RuboCop::Cop::EnforceSuperclass
# rubocop:enable Layout/ClassStructure
end
end
end
end