class RuboCop::Cop::Style::StringLiteralsInInterpolation

def offense?(node)

def offense?(node)
  # If it's not a string within an interpolation, then it's not an
  # offense for this cop.
  return false unless inside_interpolation?(node)
  wrong_quotes?(node, style)
end