Sha256: 222203c81befc49446a65bf5bb3a13d56bc7f335b59d32c02bfae1fd356c66d6

Contents?: true

Size: 1.05 KB

Versions: 13

Compression:

Stored size: 1.05 KB

Contents

# 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? :ActionMailer) :Base)'

        # rubocop:disable Layout/ClassStructure
        include RuboCop::Cop::EnforceSuperclass
        # rubocop:enable Layout/ClassStructure
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 3 rubygems

Version Path
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/application_mailer.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/application_mailer.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/application_mailer.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/application_mailer.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.17.2 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.17.1 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.17.0 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.16.1 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.16.0 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.15.2 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.15.1 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.15.0 lib/rubocop/cop/rails/application_mailer.rb