Ruby27KeywordArgumentWarnings
The department is: Chef/Deprecations
The full name of the cop is: Chef/Deprecations/Ruby27KeywordArgumentWarnings
Enabled by default | Supports autocorrection | Target Chef Version |
---|---|---|
Enabled | Yes | All Versions |
Pass options to shell_out helpers without the brackets to avoid Ruby 2.7 deprecation warnings.
Examples
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])
Configurable attributes
Name | Default value | Configurable values |
---|---|---|
Version Added | 6.5.0 | String | Exclude |
| Array |
Was this page helpful?