Class: RuboCop::Cop::Chef::Deprecations::PartialSearchHelperUsage
- Defined in:
 - lib/rubocop/cop/chef/deprecation/partial_search_helper_usage.rb
 
Overview
Legacy partial_search usage should be updated to use :filter_result in the search helper instead
Constant Summary collapse
- MSG =
 'Legacy partial_search usage should be updated to use :filter_result in the search helper instead'- RESTRICT_ON_SEND =
 [:partial_search].freeze
Instance Method Summary collapse
Methods inherited from Base
Instance Method Details
#on_send(node) ⇒ Object
      54 55 56  | 
    
      # File 'lib/rubocop/cop/chef/deprecation/partial_search_helper_usage.rb', line 54 def on_send(node) add_offense(node, severity: :warning) end  |