class RuboCop::Cop::Style::StringLiterals

def offense?(node)

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