Sha256: 3cd026e48256c0b9a4ed7db247fc1ea028f7056d9b711e61ef30f5732e885bfa

Contents?: true

Size: 1.16 KB

Versions: 7

Compression:

Stored size: 1.16 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # This cop checks for uses of *begin...end while/until something*.
      #
      # @example
      #
      #   # bad
      #
      #   # using while
      #   begin
      #     do_something
      #   end while some_condition
      #
      # @example
      #
      #   # bad
      #
      #   # using until
      #   begin
      #     do_something
      #   end until some_condition
      #
      # @example
      #
      #   # good
      #
      #   # using while
      #   while some_condition
      #     do_something
      #   end
      #
      # @example
      #
      #   # good
      #
      #   # using until
      #   until some_condition
      #     do_something
      #   end
      class Loop < Cop
        MSG = 'Use `Kernel#loop` with `break` rather than ' \
              '`begin/end/until`(or `while`).'.freeze

        def on_while_post(node)
          register_offense(node)
        end

        def on_until_post(node)
          register_offense(node)
        end

        private

        def register_offense(node)
          add_offense(node, :keyword)
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rubocop-0.50.0 lib/rubocop/cop/lint/loop.rb
rubocop-0.49.1 lib/rubocop/cop/lint/loop.rb
rubocop-0.49.0 lib/rubocop/cop/lint/loop.rb
rubocop-0.48.1 lib/rubocop/cop/lint/loop.rb
rubocop-0.48.0 lib/rubocop/cop/lint/loop.rb
rubocop-0.47.1 lib/rubocop/cop/lint/loop.rb
rubocop-0.47.0 lib/rubocop/cop/lint/loop.rb