Skip to main content

Ruby27KeywordArgumentWarnings

All Cookstyle Cops


The department is: Chef/Deprecations

The full name of the cop is: Chef/Deprecations/Ruby27KeywordArgumentWarnings


Enabled by defaultSupports autocorrectionTarget Chef Version
EnabledYesAll 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

NameDefault valueConfigurable values
Version Added6.5.0String
Exclude
  • **/metadata.rb
  • **/Berksfile
Array

Was this page helpful?









Search Results