class RuboCop::Cop::Chef::Deprecations::ExecuteRelativeCreatesWithoutCwd

In Chef Infra Client 13 and later you must either specific an absolute path when using the ‘execute` resource’s ‘creates` property or also use the `cwd` property.

@example

### incorrect
execute 'some_cmd' do
  creates 'something'
end

### correct
execute 'some_cmd' do
  creates '/tmp/something'
end

execute 'some_cmd' do
  creates 'something'
  cwd '/tmp/'
end