class RuboCop::Cop::Chef::Modernize::DefaultActionFromInitialize

The default actions can now be specified using the ‘default_action` helper instead of using the @action 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.

@example

 ### incorrect
 def initialize(*args)
   super
   @action = :create
 end

 ### incorrect
 def initialize(*args)
   super
   @default_action = :create
 end

### correct
default_action :create