dwbutler/groupify

View on GitHub

Showing 8 of 18 total issues

Method delete has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

      def delete(*args)
        opts = args.extract_options!
        named_groups = args.flatten

        if @member
Severity: Minor
Found in lib/groupify/adapter/mongoid/named_group_collection.rb - About 2 hrs 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 delete has 27 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def delete(*args)
        opts = args.extract_options!
        named_groups = args.flatten

        if @member
Severity: Minor
Found in lib/groupify/adapter/mongoid/named_group_collection.rb - About 1 hr to fix

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

            def merge!(source_group, destination_group)
              # Ensure that all the members of the source can be members of the destination
              invalid_member_classes = (source_group.member_classes - destination_group.member_classes)
              invalid_member_classes.each do |klass|
                if klass.in(group_ids: [source_group.id]).count > 0
    Severity: Minor
    Found in lib/groupify/adapter/mongoid/group.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 as has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

              def as(membership_type)
                return self unless membership_type
                group_ids = base.group_memberships.as(membership_type).first.group_ids
    
                if group_ids.present?
    Severity: Minor
    Found in lib/groupify/adapter/mongoid/group_member.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 add has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

          def add(*args)
            opts = args.extract_options!
            membership_type = opts[:as]
            members = args.flatten
            return unless members.present?
    Severity: Minor
    Found in lib/groupify/adapter/active_record/group.rb - About 35 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 as has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

            def as(membership_type)
              group_ids = criteria.selector["group_ids"]
              named_groups = criteria.selector["named_groups"]
              criteria = self.criteria
    
    
    Severity: Minor
    Found in lib/groupify/adapter/mongoid/member_scoped_as.rb - About 35 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 add has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def add(named_group, opts={})
            named_group = named_group.to_sym
            membership_type = opts[:as]
    
            if @member.new_record?
    Severity: Minor
    Found in lib/groupify/adapter/active_record/named_group_collection.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

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

          def remove(named_groups, method, opts)
            if named_groups.present?
              scope = @named_group_memberships.where(group_name: named_groups)
    
              if opts[:as]
    Severity: Minor
    Found in lib/groupify/adapter/active_record/named_group_collection.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