Earlier quoted context omitted.
The greatest difficulty with code is not in writing it but in reading it.
if/unless is pretty common in natural language for good reason. I find it far more readable than prefix, block-form if for the simple case of one-line results with no alternative branch.,
def do_stuff()
return unless stuff_enabled?
...
end