danmayer/coverband

View on GitHub
lib/coverband/utils/source_file.rb

Summary

Maintainability
B
4 hrs
Test Coverage

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

    class SourceFile
      # TODO: Refactor Line into its own file
      # Representation of a single line in a source file including
      # this specific line's source code, line_number and code coverage,
      # with the coverage being either nil (coverage not applicable, e.g. comment
Severity: Minor
Found in lib/coverband/utils/source_file.rb - About 3 hrs to fix

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

          def build_lines
            coverage_exceeding_source_warn if coverage.size > src.size
    
            lines = src.map.with_index(1) { |src, i|
              Coverband::Utils::SourceFile::Line.new(
    Severity: Minor
    Found in lib/coverband/utils/source_file.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 initialize has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

          def initialize(filename, file_data)
            @filename = filename
            @runtime_relavant_lines = nil
            if file_data.is_a?(Hash)
              @coverage = file_data["data"]
    Severity: Minor
    Found in lib/coverband/utils/source_file.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 7 (exceeds 5 allowed). Consider refactoring.
    Open

            def initialize(src, line_number, coverage, coverage_posted = nil)
              raise ArgumentError, "Only String accepted for source" unless src.is_a?(String)
              raise ArgumentError, "Only Integer accepted for line_number" unless line_number.is_a?(Integer)
              raise ArgumentError, "Only Integer and nil accepted for coverage" unless coverage.is_a?(Integer) || coverage.nil?
    
    
    Severity: Minor
    Found in lib/coverband/utils/source_file.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

    There are no issues that match your filters.

    Category
    Status