As you can see from the commit message in ba35c14325ebbf1da8f200df83c45ee9937ff8a1, this is a new feature and expected behavior in Ruby 2.7, though it may still be considered experimental.
You can filter the warnings by overriding Warning.warn, or using the warning gem:
require'warning'Warning.ignore(/`(els)?if' at the end of line without an expression/)
As the current behavior is now expected, this isn't a bug, so I'm switching this to a feature request to remove the warning.
You can filter the warnings by overriding Warning.warn, or using the warning gem:
require 'warning'
Warning.ignore(/`(els)?if' at the end of line without an expression/)
That's pretty cool! I did not know that was possible in quite that way. Learned
something there. :D
[Removed stuff here.]
Edit: Aaah yikes ... I misread your comment; you referred to the warning gem. I
thought this was part of ruby as-is. Well, still cool that this exists at the
least.