Sha256: 1816e0046e6fa86dad6be751124987acdd77b742ff887df6f4e18dbaa9f7c165
Contents?: true
Size: 555 Bytes
Versions: 24
Compression:
Stored size: 555 Bytes
Contents
# encoding: utf-8 module RuboCop module Cop module Lint # This cop checks for uses of *begin...end while/until something*. class Loop < Cop MSG = 'Use `Kernel#loop` with `break` rather than ' \ '`begin/end/until`(or `while`).' 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
24 entries across 24 versions & 2 rubygems