duse-io/duse.rb

View on GitHub
lib/duse/cli/command.rb

Summary

Maintainability
B
6 hrs
Test Coverage

Class Command has 36 methods (exceeds 20 allowed). Consider refactoring.
Open

    class Command
      attr_reader :output, :input
      attr_accessor :arguments, :force_interactive

      extend Parser
Severity: Minor
Found in lib/duse/cli/command.rb - About 4 hrs to fix

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

          def check_arity(method, *args)
            return unless method.respond_to? :parameters
            method.parameters.each do |type, name|
              return if type == :rest
              wrong_args("few") unless args.shift or type == :opt or type == :block
    Severity: Minor
    Found in lib/duse/cli/command.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 usage_for has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

          def usage_for(prefix, method)
            usage = "duse #{prefix}"
            method = method(method)
            if method.respond_to? :parameters
              method.parameters.each do |type, name|
    Severity: Minor
    Found in lib/duse/cli/command.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

    There are no issues that match your filters.

    Category
    Status