All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
while
until
begin
while/until should be used at the beginning of the block, and without the begin statement.
begin puts i i += 1 end while i < 10
while i < 10 puts i i += 1 end