class RuboCop::Cop::Chef::Deprecations::ChefWindowsPlatformHelper

Use ‘platform?(’windows’)‘ instead of the legacy `Chef::Platform.windows?` helper

@example

### incorrect
Chef::Platform.windows?

### correct
platform?('windows')
platform_family?('windows')