Skip to main content

Chef/Modernize/ResourceNameFromInitialize

Cookstyle cops page

The Cookstyle cops department: Chef/Modernize

Enabled by defaultSupports autocorrectionTarget Chef Version
EnabledYesAll Versions

The resource name can now be specified using the resource_name helper instead of using the @resource_name variable in the resource provider initialize method. In general we recommend against writing HWRPs, but if HWRPs are necessary you should utilize as much of the resource DSL as possible.

correct

resource_name :create

Examples

incorrect

def initialize(*args)
  super
  @resource_name = :foo
end

Configurable attributes

NameDefault valueConfigurable values
Version Added5.10.0String
Include
  • **/resources/*.rb
  • **/providers/*.rb
  • **/libraries/*.rb
Array

Thank you for your feedback!

×









Search Results