Sha256: e3d7e6c1693a84f2b585ccf211fd8bfe894665499b3b247adedf0c4fde586a07

Contents?: true

Size: 1.08 KB

Versions: 9

Compression:

Stored size: 1.08 KB

Contents

# encoding: utf-8

module RuboCop
  module Cop
    module Style
      # Checks for uses of `do` in multi-line `while/until` statements.
      class WhileUntilDo < Cop
        def on_while(node)
          handle(node)
        end

        def on_until(node)
          handle(node)
        end

        def handle(node)
          length = node.loc.expression.source.lines.to_a.size
          return unless length > 1
          return unless  node.loc.begin && node.loc.begin.is?('do')

          add_offense(node, :begin, error_message(node.type))
        end

        private

        def error_message(node_type)
          format('Never use `do` with multi-line `%s`.', node_type)
        end

        def autocorrect(node)
          @corrections << lambda do |corrector|
            condition_node, = *node
            end_of_condition_range = condition_node.loc.expression.end
            do_range = node.loc.begin
            whitespaces_and_do_range = end_of_condition_range.join(do_range)
            corrector.remove(whitespaces_and_do_range)
          end
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
rubyjobbuilderdsl-0.0.2 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/lib/rubocop/cop/style/while_until_do.rb
rubyjobbuilderdsl-0.0.1 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/lib/rubocop/cop/style/while_until_do.rb
rubocop-0.27.0 lib/rubocop/cop/style/while_until_do.rb
rubocop-0.26.1 lib/rubocop/cop/style/while_until_do.rb
rubocop-0.26.0 lib/rubocop/cop/style/while_until_do.rb
rubocop-0.25.0 lib/rubocop/cop/style/while_until_do.rb
rubocop-0.24.1 lib/rubocop/cop/style/while_until_do.rb
rubocop-0.24.0 lib/rubocop/cop/style/while_until_do.rb
rubocop-0.23.0 lib/rubocop/cop/style/while_until_do.rb