thomasklemm/pluginGeek

View on GitHub

Showing 4 of 4 total issues

Class Repo has 26 methods (exceeds 20 allowed). Consider refactoring.
Open

class Repo < ActiveRecord::Base
  # Friendly ID
  extend FriendlyId
  friendly_id :full_name

Severity: Minor
Found in app/models/repo.rb - About 3 hrs to fix

    Class Category has 24 methods (exceeds 20 allowed). Consider refactoring.
    Open

    class Category < ActiveRecord::Base
      # Friendly Id using history module (redirecting to new slug if slug changed)
      extend FriendlyId
      friendly_id :full_name, use: [:slugged, :history]
    
    
    Severity: Minor
    Found in app/models/category.rb - About 2 hrs to fix

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

        def assign_languages
          return unless full_name_changed?
      
          # Extract languages from full_name string
          match_data = full_name.match %r{\((?<languages>.*)\)}
      Severity: Minor
      Found in app/models/category.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

      Method owner_and_name_from_params has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

        def owner_and_name_from_params
          owner = params[:owner] || (params[:repo] && params[:repo][:owner])
          name  = params[:name]  || (params[:repo] && params[:repo][:name])
          (owner && name) ? "#{ owner }/#{ name }" : nil
        end
      Severity: Minor
      Found in app/controllers/repos_controller.rb - About 25 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

      Severity
      Category
      Status
      Source
      Language