lib/gepub/package.rb

Summary

Maintainability
B
6 hrs
Test Coverage
A
94%

Class Package has 21 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Package
    include XMLUtil, DSLUtil
    include InspectMixin

    extend Forwardable
Severity: Minor
Found in lib/gepub/package.rb - About 2 hrs to fix

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

        def opf_xml
          if version.to_f < 3.0 || @epub_backward_compat
            spine.toc  ||= 'ncx'
            if @metadata.oldstyle_meta.select {
              |meta|
    Severity: Minor
    Found in lib/gepub/package.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 opf_xml has 35 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def opf_xml
          if version.to_f < 3.0 || @epub_backward_compat
            spine.toc  ||= 'ncx'
            if @metadata.oldstyle_meta.select {
              |meta|
    Severity: Minor
    Found in lib/gepub/package.rb - About 1 hr to fix

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

            def generate_key(param = {})
              prefix = param[:prefix] || ''
              suffix = param[:suffix] || ''
              count = [ param[:start] || 1, counter(prefix,suffix) || 1].max
              while (true)
      Severity: Minor
      Found in lib/gepub/package.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 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def initialize(path='OEBPS/package.opf', attributes={})
            @path = path
            if File.extname(@path) != '.opf'
              if @path.size > 0
                @path = [path,'package.opf'].join('/')
      Severity: Minor
      Found in lib/gepub/package.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

      There are no issues that match your filters.

      Category
      Status