Sha256: 8d416f370a910418e520acaf1c0083139034fc0e32bdcc4dc022194584b34570
Contents?: true
Size: 1.18 KB
Versions: 8
Compression:
Stored size: 1.18 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module Rails # This cop 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? :ActiveJob) :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
8 entries across 8 versions & 2 rubygems