dyoung522/devtools-jdiff

View on GitHub

Showing 6 of 6 total issues

Method parse has 27 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def self.parse(argv_opts = [], unit_testing = false)
      opt_parse = DevTools::OptParse.new({ name:     PROGRAM_NAME,
                                           version:  VERSION,
                                           testing:  unit_testing,
                                           defaults: default_options })
Severity: Minor
Found in lib/jira_diff/options.rb - About 1 hr to fix

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

        def split_story(description)
          raise RuntimeError, "description cannot be blank" unless description
    
          stories       = []
          story_pattern = /\[?(((SRMPRT|OSMCLOUD)\-\d+)|NO-JIRA)\]?[,:\-\s]?\s*(.*)$/m
    Severity: Minor
    Found in lib/jira_diff/story.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 run! has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

      def self.run!
        begin
          opts = OptParse.parse ARGV
        rescue => error
          puts error
    Severity: Minor
    Found in lib/jira_diff.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 _get_stories has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def _get_stories(branches = @branches)
          git = Git.new(@directory)
    
          branches.to_a.each do |branch|
            puts "checking #{branch}" if @options.debug
    Severity: Minor
    Found in lib/jira_diff/stories.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 _get_includes has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def _get_includes(includes_file)
          lines = []
          if includes_file && File.exist?(includes_file)
            File.open(includes_file, 'r') do |f|
              f.each_line { |line| lines << $1 if line =~ /(\w+\-\d+)/ }
    Severity: Minor
    Found in lib/jira_diff/stories.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 parse has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def self.parse(argv_opts = [], unit_testing = false)
          opt_parse = DevTools::OptParse.new({ name:     PROGRAM_NAME,
                                               version:  VERSION,
                                               testing:  unit_testing,
                                               defaults: default_options })
    Severity: Minor
    Found in lib/jira_diff/options.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