class RuboCop::Cop::Lint::EmptyInterpolation

Checks for empty interpolation.

@example

# bad
"result is #{}"

# good
"result is #{some_result}"