class RuboCop::Cop::Chef::Deprecations::Ruby27KeywordArgumentWarnings

Pass options to shell_out helpers without the brackets to avoid Ruby 2.7 deprecation warnings.

@example

### incorrect
shell_out!('hostnamectl status', { returns: [0, 1] })
shell_out('hostnamectl status', { returns: [0, 1] })

### correct
shell_out!('hostnamectl status', returns: [0, 1])
shell_out('hostnamectl status', returns: [0, 1])