Sha256: 38b3e1afc3cdc0c213bda54bfaeb6d038b6c313e151638818b1146e0cb9e4f99

Contents?: true

Size: 955 Bytes

Versions: 5

Compression:

Stored size: 955 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Rails
      # Identifies passing any argument to `#to_s`.
      #
      # @safety
      #   This cop is marked as unsafe because it may detect `#to_s` calls
      #   that are not related to Active Support implementation.
      #
      # @example
      #
      #   # bad
      #   obj.to_s(:delimited)
      #
      #   # good
      #   obj.to_formatted_s(:delimited)
      #
      class ToSWithArgument < Base
        extend AutoCorrector
        extend TargetRailsVersion

        MSG = 'Use `to_formatted_s` instead.'

        RESTRICT_ON_SEND = %i[to_s].freeze

        minimum_target_rails_version 7.0

        def on_send(node)
          return if node.arguments.empty?

          add_offense(node.loc.selector) do |corrector|
            corrector.replace(node.loc.selector, 'to_formatted_s')
          end
        end
        alias on_csend on_send
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rubocop-rails-2.17.2 lib/rubocop/cop/rails/to_s_with_argument.rb
rubocop-rails-2.17.1 lib/rubocop/cop/rails/to_s_with_argument.rb
rubocop-rails-2.17.0 lib/rubocop/cop/rails/to_s_with_argument.rb
rubocop-rails-2.16.1 lib/rubocop/cop/rails/to_s_with_argument.rb
rubocop-rails-2.16.0 lib/rubocop/cop/rails/to_s_with_argument.rb