Showing 23 of 27 total issues
Method create_node
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def create_node
hash = {}
if @options[:ohai]
unless @backend.run_command("which ohai", error: false).exit_status == 0
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method method_missing
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def method_missing(method, *args, &block)
if @resource.class.defined_attributes[method]
if args.size == 1
return @attributes[method] = args.first
elsif args.size == 0 && block_given?
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method include_recipe
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def include_recipe(target)
expanded_path = ::File.expand_path(target, File.dirname(@recipe.path))
expanded_path = ::File.join(expanded_path, 'default.rb') if ::Dir.exists?(expanded_path)
expanded_path.concat('.rb') unless expanded_path.end_with?('.rb')
candidate_paths = [expanded_path, Recipe.find_recipe_in_gem(target)].compact
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"