Class: RuboCop::Cop::Chef::Modernize::DependsOnChefVaultCookbook
- Extended by:
 - AutoCorrector, TargetChefVersion
 
- Includes:
 - RangeHelp
 
- Defined in:
 - lib/rubocop/cop/chef/modernize/depends_chef_vault_cookbook.rb
 
Overview
Don’t depend on the chef-vault cookbook made obsolete by Chef Infra Client 16.0. The chef-vault gem and helpers are now included in Chef Infra Client itself.
Constant Summary collapse
- MSG =
 "Don't depend on the chef-vault cookbook made obsolete by Chef Infra Client 16.0. The chef-vault gem and helpers 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
      43 44 45 46 47 48 49  | 
    
      # File 'lib/rubocop/cop/chef/modernize/depends_chef_vault_cookbook.rb', line 43 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  |