QuackatronHQ / Gigarepo

while/until detected in begin block RB-LI1033
Bug risk
Major
1 occurrence in this check
Use Kernel#loop with break rather than begin/end/until(or while).
10# Raises "`while`/`until` detected in `begin` block"
11begin
12  do_something
13end while a == b14
15# Raises "multiple comparison detected"
16x < y < z