blambeau/qrb

View on GitHub

Showing 23 of 29 total issues

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

  class TypeFactory

    DSL_METHODS = [
      :attribute,
      :heading,
Severity: Minor
Found in lib/finitio/support/type_factory.rb - About 3 hrs to fix

    Method check_and_warn has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

        def check_and_warn(logger = nil)
          logger ||= begin
            require 'logger'
            Logger.new(STDERR)
          end
    Severity: Minor
    Found in lib/finitio/system.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 type has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

        def type(type, name = nil, metadata = nil, &bl)
          return subtype(type(type, name, metadata), bl) if bl
          case type
          when Type
            alias_type(type, name, metadata)
    Severity: Minor
    Found in lib/finitio/support/type_factory.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 dress has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

        def dress(value, handler = DressHelper.new)
          # Up should be idempotent with respect to the ADT
          return value if ruby_type and value.is_a?(ruby_type)
    
          # Dressed value and first exception
    Severity: Minor
    Found in lib/finitio/type/ad_type.rb - About 1 hr 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 infer_type has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        def infer_type(value)
          case value
          when Hash
            attrs = value.map{|k,v|
              Attribute.new(k.to_sym, infer_type(v))
    Severity: Minor
    Found in lib/finitio/inference.rb - About 1 hr 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 dress has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

        def dress(value, handler = DressHelper.new)
          handler.failed!(self, value) unless looks_a_tuple?(value)
    
          # Check for missing attributes
          unless (missing = missing_attrs(value, true)).empty?
    Severity: Minor
    Found in lib/finitio/type/hash_based_type.rb - About 1 hr 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 type has 34 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def type(type, name = nil, metadata = nil, &bl)
          return subtype(type(type, name, metadata), bl) if bl
          case type
          when Type
            alias_type(type, name, metadata)
    Severity: Minor
    Found in lib/finitio/support/type_factory.rb - About 1 hr to fix

      Method alias_type has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

          def alias_type(type, name, metadata)
            raise "Type expected `#{type}`" unless type.is_a?(Type)
            if (name && type.named?) or (metadata && type.metadata?)
              AliasType.new(type, name, metadata)
            else
      Severity: Minor
      Found in lib/finitio/support/type_factory.rb - About 1 hr 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 dress has 27 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def dress(value, handler = DressHelper.new)
            handler.failed!(self, value) unless looks_a_tuple?(value)
      
            # Check for missing attributes
            unless (missing = missing_attrs(value, true)).empty?
      Severity: Minor
      Found in lib/finitio/type/hash_based_type.rb - About 1 hr to fix

        Method initialize has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

            def initialize(infotype, dresser, undresser, name = nil, metadata = nil)
              unless infotype.is_a?(Type)
                raise ArgumentError, "Type expected, got `#{infotype}`"
              end
              unless dresser.respond_to?(:call)
        Severity: Minor
        Found in lib/finitio/support/contract.rb - About 55 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 suppremum has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            def suppremum(other, simple_class, multi_class)
              return self if self == other
              return super(other) unless other.is_a?(simple_class) or other.is_a?(multi_class)
              return super(other) unless heading.looks_similar?(other.heading)
              result_heading = heading.suppremum(other.heading)
        Severity: Minor
        Found in lib/finitio/type/heading_based_type.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 contract has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def contract(infotype, dresser, undresser, name = nil, metadata = nil)
        Severity: Minor
        Found in lib/finitio/support/type_factory.rb - About 35 mins to fix

          Method initialize has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              def initialize(infotype, dresser, undresser, name = nil, metadata = nil)
          Severity: Minor
          Found in lib/finitio/support/contract.rb - About 35 mins to fix

            Method subtype has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                def subtype(super_type, constraints = nil, name = nil, metadata = nil, &bl)
            Severity: Minor
            Found in lib/finitio/support/type_factory.rb - About 35 mins to fix

              Method to_name has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                  def to_name
                    name = map(&:to_name).join(', ')
                    if allow_extra?
                      name << ", " unless empty?
                      name << "..."
              Severity: Minor
              Found in lib/finitio/support/heading.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 normalize_attributes has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                  def normalize_attributes(attrs)
                    unless attrs.respond_to?(:each)
                      raise ArgumentError, "Enumerable[Attribute] expected"
                    end
              
              
              Severity: Minor
              Found in lib/finitio/support/heading.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 initialize has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  def initialize(name, metadata)
                    unless name.nil? or name.is_a?(String)
                      raise ArgumentError, "String expected for type name, got `#{name}`"
                    end
                    unless metadata.nil? or metadata.is_a?(Hash)
              Severity: Minor
              Found in lib/finitio/type.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 name has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  def name(name)
                    unless name.nil? or (name.is_a?(String) and name.strip.size > 1)
                      fail!("Wrong type name `#{name}`")
                    end
              
              
              Severity: Minor
              Found in lib/finitio/support/type_factory.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 fetch_on_imports has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  def fetch_on_imports(name, imports = @imports, &bl)
                    if imports.empty?
                      raise KeyError, %Q{key not found: "#{name}"} unless bl
                      bl.call(name)
                    else
              Severity: Minor
              Found in lib/finitio/system.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 dress has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  def dress(value, handler = DressHelper.new)
                    # Check that the supertype is able to dress the value.
                    # Rewrite and set cause to any encountered TypeError.
                    uped = handler.try(self, value) do
                      super_type.dress(value, handler)
              Severity: Minor
              Found in lib/finitio/type/sub_type.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