class RuboCop::Cop::Chef::Modernize::ResourceForcingCompileTime

The hostname, build_essential, chef_gem, and ohai_hint resources include ‘compile_time’ properties, which should be used to force the resources to run at compile time by setting ‘compile_time true`.

@example

### incorrect
build_essential 'install build tools' do
 action :nothing
end.run_action(:install)

### correct
build_essential 'install build tools' do
 compile_time true
end