lib/generators/avo/resource_generator.rb

Summary

Maintainability
C
1 day
Test Coverage

Class ResourceGenerator has 38 methods (exceeds 20 allowed). Consider refactoring.
Open

    class ResourceGenerator < NamedBaseGenerator
      include Concerns::ParentController
      include Concerns::OverrideController

      source_root File.expand_path("templates", __dir__)
Severity: Minor
Found in lib/generators/avo/resource_generator.rb - About 5 hrs to fix

    File resource_generator.rb has 308 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require_relative "named_base_generator"
    require_relative "concerns/parent_controller"
    require_relative "concerns/override_controller"
    
    module Generators
    Severity: Minor
    Found in lib/generators/avo/resource_generator.rb - About 3 hrs to fix

      Method fields_mapping has 44 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

            def fields_mapping
              {
                primary_key: {
                  field: "id"
                },
      Severity: Minor
      Found in lib/generators/avo/resource_generator.rb - About 1 hr to fix

        Method names_mapping has 32 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

              def names_mapping
                {
                  id: {
                    field: "id"
                  },
        Severity: Minor
        Found in lib/generators/avo/resource_generator.rb - About 1 hr to fix

          Method generated_fields_template has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

                def generated_fields_template
                  return if fields.blank?
          
                  fields_string = ""
          
          
          Severity: Minor
          Found in lib/generators/avo/resource_generator.rb - About 45 mins to fix

          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

          There are no issues that match your filters.

          Category
          Status