Sha256: a771cb1746a6852ad3e0c82e45361458b35b0a5c720c7865c27fce2ffde731f5

Contents?: true

Size: 992 Bytes

Versions: 11

Compression:

Stored size: 992 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Rails
      # This cop checks that mailers subclass ApplicationMailer with Rails 5.0.
      #
      # @example
      #
      #  # good
      #  class MyMailer < ApplicationMailer
      #    # ...
      #  end
      #
      #  # bad
      #  class MyMailer < ActionMailer::Base
      #    # ...
      #  end
      class ApplicationMailer < Cop
        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

        def autocorrect(node)
          lambda do |corrector|
            corrector.replace(node.source_range, self.class::SUPERCLASS)
          end
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rubocop-rails-2.8.1 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.8.0 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.7.1 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.7.0 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.6.0 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.5.2 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.5.1 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.5.0 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.4.2 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.4.1 lib/rubocop/cop/rails/application_mailer.rb
rubocop-rails-2.4.0 lib/rubocop/cop/rails/application_mailer.rb