class RuboCop::Cop::Chef::Correctness::ResourceSetsNameProperty

Use name properties instead of setting the name property in a resource. Setting the name property directly causes notification and reporting issues.

@example

### incorrect
service 'foo' do
 name 'bar'
end

### correct
service 'foo' do
 service_name 'bar'
end