Sha256: 38ffbc740810f850acfb096333b68e908a4d0ea77863a827fd4d181cafeaac80

Contents?: true

Size: 929 Bytes

Versions: 191

Compression:

Stored size: 929 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # Enforces the use of consistent method names
      # from the String class.
      #
      # @example
      #   # bad
      #   'name'.intern
      #   'var'.unfavored_method
      #
      #   # good
      #   'name'.to_sym
      #   'var'.preferred_method
      class StringMethods < Base
        include MethodPreference
        extend AutoCorrector

        MSG = 'Prefer `%<prefer>s` over `%<current>s`.'

        def on_send(node)
          return unless (preferred_method = preferred_method(node.method_name))

          message = format(MSG, prefer: preferred_method, current: node.method_name)

          add_offense(node.loc.selector, message: message) do |corrector|
            corrector.replace(node.loc.selector, preferred_method(node.method_name))
          end
        end
        alias on_csend on_send
      end
    end
  end
end

Version data entries

191 entries across 184 versions & 18 rubygems

Version Path
rubocop-1.70.0 lib/rubocop/cop/style/string_methods.rb
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/style/string_methods.rb
rubocop-1.69.2 lib/rubocop/cop/style/string_methods.rb
rubocop-1.69.1 lib/rubocop/cop/style/string_methods.rb
rubocop-1.69.0 lib/rubocop/cop/style/string_methods.rb
rubocop-1.68.0 lib/rubocop/cop/style/string_methods.rb
rubocop-1.67.0 lib/rubocop/cop/style/string_methods.rb
rubocop-1.66.1 lib/rubocop/cop/style/string_methods.rb
rubocop-1.66.0 lib/rubocop/cop/style/string_methods.rb
rubocop-1.65.1 lib/rubocop/cop/style/string_methods.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/style/string_methods.rb
rubocop-1.65.0 lib/rubocop/cop/style/string_methods.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/string_methods.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/string_methods.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/string_methods.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-1.64.1/lib/rubocop/cop/style/string_methods.rb
rubocop-1.64.1 lib/rubocop/cop/style/string_methods.rb
rubocop-1.63.4 lib/rubocop/cop/style/string_methods.rb
rubocop-1.63.3 lib/rubocop/cop/style/string_methods.rb
rubocop-1.63.2 lib/rubocop/cop/style/string_methods.rb