pbrisbin/tee-io

View on GitHub

Showing 2 of 13 total issues

Assignment Branch Condition size for run is too high. [20.74/20]
Open

    def run(&block)
      pid, stdin, out, err = POSIX::Spawn.popen4(*command)

      stdin.close
      stdout_thread = Thread.new { block.call(:stdout, out) }
Severity: Minor
Found in sdk/ruby/lib/tee_io/process.rb by rubocop

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

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

    def run(&block)
      pid, stdin, out, err = POSIX::Spawn.popen4(*command)

      stdin.close
      stdout_thread = Thread.new { block.call(:stdout, out) }
Severity: Minor
Found in sdk/ruby/lib/tee_io/process.rb - About 1 hr 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