GutenYe/tagen

View on GitHub

Showing 5 of 5 total issues

Method recv2 has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
Open

  def recv2
    if (data = recv(LEN_LEN))
      if data.empty?
        ""
      else
Severity: Minor
Found in lib/tagen/socket.rb - About 3 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 load_cookies has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

    def load_cookies(file)
      now = ::Time.now

      io = case file
      when String
Severity: Minor
Found in lib/tagen/watir.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

Method time_humanize has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

  def time_humanize(include_seconds=false)
    deta = self
    deta, seconds = deta.divmod(60)
    deta, minutes = deta.divmod(60)
    deta, hours = deta.divmod(24)
Severity: Minor
Found in lib/tagen/core/time.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

Method mkdir_p has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    def mkdir_p(path, o={})
      return if File.exists?(path)

      o[:mode] ||= 0775

Severity: Minor
Found in lib/tagen/core/io.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 delete_values_at has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    def delete_values_at(*indexs, &blk)
    offset = 0

    # convert to positve index
    indexs.map { |i| i < 0 ? length + i : i }
Severity: Minor
Found in lib/tagen/core/array/delete_values.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