siman-man/shiritori

View on GitHub

Showing 4 of 4 total issues

Method run has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

    def run
      loop do
        command = get_command('Please input next method > ')

        break if command.nil? 
Severity: Minor
Found in lib/shiritori/shiritori.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 run has 34 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def run
      loop do
        command = get_command('Please input next method > ')

        break if command.nil? 
Severity: Minor
Found in lib/shiritori/shiritori.rb - About 1 hr to fix

    Method init has 29 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def init(mode)
          @all_method = get_all_methods
          @current_class = Object
          @current_chain = []
          @used_method_list = []
    Severity: Minor
    Found in lib/shiritori/shiritori.rb - About 1 hr to fix

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

          def try_method_chain(command, object)
            method_name = command.scan(METHOD_PATTERN).first.to_sym
            result = [method_name]
      
            case command
      Severity: Minor
      Found in lib/shiritori/shiritori.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

      Severity
      Category
      Status
      Source
      Language