Class: RuboCop::Cop::Chef::Style::IncludeRecipeWithParentheses

Inherits:
Base
  • Object
show all
Extended by:
AutoCorrector
Defined in:
lib/rubocop/cop/chef/style/include_recipe_with_parentheses.rb

Overview

There is no need to wrap the recipe in parentheses when using the include_recipe helper.

Examples:


### incorrect
include_recipe('foo::bar')

### correct
include_recipe 'foo::bar'

Constant Summary collapse

MSG =
'There is no need to wrap the recipe in parentheses when using the include_recipe helper'
RESTRICT_ON_SEND =
[:include_recipe].freeze

Instance Method Summary collapse

Methods inherited from Base

#target_chef_version

Instance Method Details

#on_send(node) ⇒ Object



42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/rubocop/cop/chef/style/include_recipe_with_parentheses.rb', line 42

def on_send(node)
  include_recipe?(node) do |recipe|
    return unless node.parenthesized?

    # avoid chefspec: expect(chef_run).to include_recipe('foo')
    return if node.parent&.send_type?

    add_offense(node, severity: :refactor) do |corrector|
      corrector.replace(node, "include_recipe #{recipe.source}")
    end
  end
end