Sha256: df939160332327622539145211aa3c615e8a074e78641bbb8a5f9016c6c862c3

Contents?: true

Size: 1005 Bytes

Versions: 12

Compression:

Stored size: 1005 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for uses of "*" as a substitute for _join_.
      #
      # Not all cases can reliably checked, due to Ruby's dynamic
      # types, so we consider only cases when the first argument is an
      # array literal or the second is a string literal.
      #
      # @example
      #
      #   # bad
      #   %w(foo bar baz) * ","
      #
      #   # good
      #   %w(foo bar baz).join(",")
      #
      class ArrayJoin < Cop
        MSG = 'Favor `Array#join` over `Array#*`.'

        def_node_matcher :join_candidate?, '(send $array :* $str)'

        def on_send(node)
          join_candidate?(node) { add_offense(node, location: :selector) }
        end

        def autocorrect(node)
          array, join_arg = join_candidate?(node).map(&:source)

          lambda do |corrector|
            corrector.replace(node, "#{array}.join(#{join_arg})")
          end
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
rubocop-0.89.0 lib/rubocop/cop/style/array_join.rb
rubocop-0.88.0 lib/rubocop/cop/style/array_join.rb
rbhint-0.87.1.rc1 lib/rubocop/cop/style/array_join.rb
rubocop-0.87.1 lib/rubocop/cop/style/array_join.rb
rubocop-0.87.0 lib/rubocop/cop/style/array_join.rb
rubocop-0.86.0 lib/rubocop/cop/style/array_join.rb
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/rubocop-0.85.1/lib/rubocop/cop/style/array_join.rb
rbhint-0.85.1.rc2 lib/rubocop/cop/style/array_join.rb
rbhint-0.85.1.rc1 lib/rubocop/cop/style/array_join.rb
rubocop-0.85.1 lib/rubocop/cop/style/array_join.rb
rbhint-0.8.5.rc1 lib/rubocop/cop/style/array_join.rb
rubocop-0.85.0 lib/rubocop/cop/style/array_join.rb