class RuboCop::Cop::Chef::Deprecations::LaunchdDeprecatedHashProperty

The launchd resource’s hash property was renamed to plist_hash in Chef Infra Client 13+ to avoid conflicts with Ruby’s hash class.

@example

### incorrect
launchd 'foo' do
  hash foo: 'bar'
end

### correct
launchd 'foo' do
  plist_hash foo: 'bar'
end