class RuboCop::Cop::Chef::Modernize::ProvidesFromInitialize

Provides should be set using the ‘provides` resource DSL method instead of instead of setting @provides in the initialize method.

@example

### incorrect
def initialize(*args)
  super
  @provides = :foo
end

### correct
provides :foo