Sha256: 5d9db342ac14ee6ae40bca51cea9296e8f99b5a17e008b325a49efadf60da2a1

Contents?: true

Size: 1.95 KB

Versions: 38

Compression:

Stored size: 1.95 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for uses of Module#attr.
      #
      # @example
      #   # bad - creates a single attribute accessor (deprecated in Ruby 1.9)
      #   attr :something, true
      #   attr :one, :two, :three # behaves as attr_reader
      #
      #   # good
      #   attr_accessor :something
      #   attr_reader :one, :two, :three
      #
      class Attr < Base
        include RangeHelp
        extend AutoCorrector

        MSG = 'Do not use `attr`. Use `%<replacement>s` instead.'
        RESTRICT_ON_SEND = %i[attr].freeze

        def on_send(node)
          return unless node.command?(:attr) && node.arguments?
          # check only for method definitions in class/module body
          return if node.parent && !node.parent.class_type? && !class_eval?(node.parent)

          message = message(node)
          add_offense(node.loc.selector, message: message) do |corrector|
            autocorrect(corrector, node)
          end
        end

        private

        def autocorrect(corrector, node)
          attr_name, setter = *node.arguments

          node_expr = node.source_range
          attr_expr = attr_name.source_range

          remove = range_between(attr_expr.end_pos, node_expr.end_pos) if setter&.boolean_type?

          corrector.replace(node.loc.selector, replacement_method(node))
          corrector.remove(remove) if remove
        end

        def message(node)
          format(MSG, replacement: replacement_method(node))
        end

        def replacement_method(node)
          setter = node.last_argument

          if setter&.boolean_type?
            setter.true_type? ? 'attr_accessor' : 'attr_reader'
          else
            'attr_reader'
          end
        end

        # @!method class_eval?(node)
        def_node_matcher :class_eval?, <<~PATTERN
          (block (send _ {:class_eval :module_eval}) ...)
        PATTERN
      end
    end
  end
end

Version data entries

38 entries across 38 versions & 6 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/style/attr.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/style/attr.rb
rubocop-1.29.1 lib/rubocop/cop/style/attr.rb
rubocop-1.29.0 lib/rubocop/cop/style/attr.rb
rubocop-1.28.2 lib/rubocop/cop/style/attr.rb
rubocop-1.28.1 lib/rubocop/cop/style/attr.rb
rubocop-1.28.0 lib/rubocop/cop/style/attr.rb
rubocop-1.27.0 lib/rubocop/cop/style/attr.rb
rubocop-1.26.1 lib/rubocop/cop/style/attr.rb
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/rubocop-1.26.0/lib/rubocop/cop/style/attr.rb
rubocop-1.26.0 lib/rubocop/cop/style/attr.rb
rubocop-1.25.1 lib/rubocop/cop/style/attr.rb
rubocop-1.25.0 lib/rubocop/cop/style/attr.rb
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/rubocop-1.24.0/lib/rubocop/cop/style/attr.rb
rubocop-1.24.1 lib/rubocop/cop/style/attr.rb
rubocop-1.24.0 lib/rubocop/cop/style/attr.rb
rubocop-1.23.0 lib/rubocop/cop/style/attr.rb
rubocop-1.22.3 lib/rubocop/cop/style/attr.rb
rubocop-1.22.2 lib/rubocop/cop/style/attr.rb
rubocop-1.22.1 lib/rubocop/cop/style/attr.rb