class RuboCop::Cop::Chef::Modernize::ShellOutHelper

Use the built-in ‘shell_out` helper available in Chef Infra Client 12.11+ instead of calling `Mixlib::ShellOut.new(’foo’).run_command`.

@example

### incorrect
Mixlib::ShellOut.new('foo').run_command

### correct
shell_out('foo')