Class: RuboCop::Cop::Chef::Modernize::UnnecessaryDependsChef15
- Extended by:
 - AutoCorrector, TargetChefVersion
 
- Includes:
 - RangeHelp
 
- Defined in:
 - lib/rubocop/cop/chef/modernize/chef_15_resources.rb
 
Overview
Don’t depend on cookbooks made obsolete by Chef Infra Client 15.0+. These community cookbooks contain resources that are now included in Chef Infra Client itself.
Constant Summary collapse
- MSG =
 "Don't depend on cookbooks made obsolete by Chef Infra Client 15.0+. These community cookbooks contain resources that are now included in Chef Infra Client itself."- RESTRICT_ON_SEND =
 [:depends].freeze
Instance Method Summary collapse
Methods included from TargetChefVersion
minimum_target_chef_version, required_minimum_chef_version, support_target_chef_version?
Methods inherited from Base
Instance Method Details
#on_send(node) ⇒ Object
      46 47 48 49 50 51 52  | 
    
      # File 'lib/rubocop/cop/chef/modernize/chef_15_resources.rb', line 46 def on_send(node) legacy_depends?(node) do add_offense(node, severity: :refactor) do |corrector| corrector.remove(range_with_surrounding_space(range: node.loc.expression, side: :left)) end end end  |