class RuboCop::Cop::Chef::Modernize::UseBuildEssentialResource

Use the build_essential resource from the build-essential cookbook 5.0+ or Chef Infra Client 14+ instead of using the build-essential::default recipe.

@example

### incorrect
depends 'build-essential'
include_recipe 'build-essential::default'
include_recipe 'build-essential'

### correct
build_essential 'install compilation tools'