Fix an incorrect autocorrect for `Rails/ContentTag` cop by koic · Pull Request #244 · rubocop/rubocop-rails

Follow up to #242. This PR allows content_tag when the first argument is a variable because content_tag(name) is simpler rather than tag.public_send(name). When public_send is used, it becomes comp...