Sha256: 590502f36da98adc52a01334c5eb4ce8daef01e5457e957399e932f32ba7cea5

Contents?: true

Size: 857 Bytes

Versions: 8

Compression:

Stored size: 857 Bytes

Contents

# encoding: utf-8
# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop enforces the use of consistent method names
      # from the String class.
      class StringMethods < Cop
        include MethodPreference

        MSG = 'Prefer `%s` over `%s`.'.freeze

        def on_send(node)
          _receiver, method_name, *_args = *node
          return unless preferred_methods[method_name]
          add_offense(node, :selector,
                      format(MSG,
                             preferred_method(method_name),
                             method_name))
        end

        def autocorrect(node)
          lambda do |corrector|
            corrector.replace(node.loc.selector,
                              preferred_method(node.loc.selector.source))
          end
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
fluent-plugin-detect-memb-exceptions-0.0.2 vendor/bundle/ruby/2.0.0/gems/rubocop-0.42.0/lib/rubocop/cop/style/string_methods.rb
fluent-plugin-detect-memb-exceptions-0.0.1 vendor/bundle/ruby/2.0.0/gems/rubocop-0.42.0/lib/rubocop/cop/style/string_methods.rb
rubocop-0.43.0 lib/rubocop/cop/style/string_methods.rb
rubocop-0.42.0 lib/rubocop/cop/style/string_methods.rb
rubocop-0.41.2 lib/rubocop/cop/style/string_methods.rb
rubocop-0.41.1 lib/rubocop/cop/style/string_methods.rb
rubocop-0.41.0 lib/rubocop/cop/style/string_methods.rb
rubocop-0.40.0 lib/rubocop/cop/style/string_methods.rb