class RuboCop::Cop::Chef::Deprecations::PoiseArchiveUsage

The poise_archive resource in the deprecated poise-archive should be replaced with the archive_file resource found in Chef Infra Client 15+.

@example

### incorrect
poise_archive 'https://example.com/myapp.tgz' do
  destination '/opt/my_app'
end

### correct
archive_file 'https://example.com/myapp.tgz' do
  destination '/opt/my_app'
end