lib/merge.rb

Summary

Maintainability
B
6 hrs
Test Coverage

Method has too many lines. [39/10]
Open

    def merge_values_from(*source_versions)
      starting_version = version

      if source_versions.size == 1 && source_versions[0] != starting_version
        source_versions << starting_version
Severity: Minor
Found in lib/merge.rb by rubocop

This cop checks if the length of a method exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Assignment Branch Condition size for merge_values_from is too high. [39.82/15]
Open

    def merge_values_from(*source_versions)
      starting_version = version

      if source_versions.size == 1 && source_versions[0] != starting_version
        source_versions << starting_version
Severity: Minor
Found in lib/merge.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 merge_values_from has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
Open

    def merge_values_from(*source_versions)
      starting_version = version

      if source_versions.size == 1 && source_versions[0] != starting_version
        source_versions << starting_version
Severity: Minor
Found in lib/merge.rb - About 4 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

Cyclomatic complexity for merge_values_from is too high. [14/6]
Open

    def merge_values_from(*source_versions)
      starting_version = version

      if source_versions.size == 1 && source_versions[0] != starting_version
        source_versions << starting_version
Severity: Minor
Found in lib/merge.rb by rubocop

This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

Perceived complexity for merge_values_from is too high. [14/7]
Open

    def merge_values_from(*source_versions)
      starting_version = version

      if source_versions.size == 1 && source_versions[0] != starting_version
        source_versions << starting_version
Severity: Minor
Found in lib/merge.rb by rubocop

This cop tries to produce a complexity score that's a measure of the complexity the reader experiences when looking at a method. For that reason it considers when nodes as something that doesn't add as much complexity as an if or a &&. Except if it's one of those special case/when constructs where there's no expression after case. Then the cop treats it as an if/elsif/elsif... and lets all the when nodes count. In contrast to the CyclomaticComplexity cop, this cop considers else nodes as adding complexity.

Example:

def my_method                   # 1
  if cond                       # 1
    case var                    # 2 (0.8 + 4 * 0.2, rounded)
    when 1 then func_one
    when 2 then func_two
    when 3 then func_three
    when 4..10 then func_other
    end
  else                          # 1
    do_something until a && b   # 2
  end                           # ===
end                             # 7 complexity points

Method merge_values_from has 39 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def merge_values_from(*source_versions)
      starting_version = version

      if source_versions.size == 1 && source_versions[0] != starting_version
        source_versions << starting_version
Severity: Minor
Found in lib/merge.rb - About 1 hr to fix

    Consider simplifying this complex logical expression.
    Open

                if (v.present? && !v.is_a?(Array)) ||
                   (v.is_a?(Array) && v.present? && v.size > 0 && v.first.present?)
    
                  structured_extended_content_thus_far[k] = v
                end
    Severity: Major
    Found in lib/merge.rb - About 40 mins to fix

      Use each_key instead of keys.each.
      Open

              attributes_to_update.keys.each do |key|
      Severity: Minor
      Found in lib/merge.rb by rubocop

      This cop checks for uses of each_key and each_value Hash methods.

      Note: If you have an array of two-element arrays, you can put parentheses around the block arguments to indicate that you're not working with a hash, and suppress RuboCop offenses.

      Example:

      # bad
      hash.keys.each { |k| p k }
      hash.values.each { |v| p v }
      hash.each { |k, _v| p k }
      hash.each { |_k, v| p v }
      
      # good
      hash.each_key { |k| p k }
      hash.each_value { |v| p v }

      Use next to skip iteration.
      Open

              unless extended_values.blank?
      Severity: Minor
      Found in lib/merge.rb by rubocop

      Use next to skip iteration instead of a condition at the end.

      Example: EnforcedStyle: skipmodifierifs (default)

      # bad
      [1, 2].each do |a|
        if a == 1
          puts a
        end
      end
      
      # good
      [1, 2].each do |a|
        next unless a == 1
        puts a
      end
      
      # good
      [1, 2].each do |o|
        puts o unless o == 1
      end

      Example: EnforcedStyle: always

      # With `always` all conditions at the end of an iteration needs to be
      # replaced by next - with `skip_modifier_ifs` the modifier if like
      # this one are ignored: `[1, 2].each { |a| return 'yes' if a == 1 }`
      
      # bad
      [1, 2].each do |o|
        puts o unless o == 1
      end
      
      # bad
      [1, 2].each do |a|
        if a == 1
          puts a
        end
      end
      
      # good
      [1, 2].each do |a|
        next unless a == 1
        puts a
      end

      Use v.size.positive? instead of v.size > 0.
      Open

                     (v.is_a?(Array) && v.present? && v.size > 0 && v.first.present?)
      Severity: Minor
      Found in lib/merge.rb by rubocop

      This cop checks for usage of comparison operators (==, >, <) to test numbers as zero, positive, or negative. These can be replaced by their respective predicate methods. The cop can also be configured to do the reverse.

      The cop disregards #nonzero? as it its value is truthy or falsey, but not true and false, and thus not always interchangeable with != 0.

      The cop ignores comparisons to global variables, since they are often populated with objects which can be compared with integers, but are not themselves Interger polymorphic.

      Example: EnforcedStyle: predicate (default)

      # bad
      
      foo == 0
      0 > foo
      bar.baz > 0
      
      # good
      
      foo.zero?
      foo.negative?
      bar.baz.positive?

      Example: EnforcedStyle: comparison

      # bad
      
      foo.zero?
      foo.negative?
      bar.baz.positive?
      
      # good
      
      foo == 0
      0 > foo
      bar.baz > 0

      %w-literals should be delimited by [ and ].
      Open

            ok_to_update = %w(title short_summary description)
      Severity: Minor
      Found in lib/merge.rb by rubocop

      This cop enforces the consistent usage of %-literal delimiters.

      Specify the 'default' key to set all preferred delimiters at once. You can continue to specify individual preferred delimiters to override the default.

      Example:

      # Style/PercentLiteralDelimiters:
      #   PreferredDelimiters:
      #     default: '[]'
      #     '%i':    '()'
      
      # good
      %w[alpha beta] + %i(gamma delta)
      
      # bad
      %W(alpha #{beta})
      
      # bad
      %I(alpha beta)

      Use !empty? instead of size > 0.
      Open

                     (v.is_a?(Array) && v.present? && v.size > 0 && v.first.present?)
      Severity: Minor
      Found in lib/merge.rb by rubocop

      This cop checks for numeric comparisons that can be replaced by a predicate method, such as receiver.length == 0, receiver.length > 0, receiver.length != 0, receiver.length < 1 and receiver.size == 0 that can be replaced by receiver.empty? and !receiver.empty.

      Example:

      # bad
      [1, 2, 3].length == 0
      0 == "foobar".length
      array.length < 1
      {a: 1, b: 2}.length != 0
      string.length > 0
      hash.size > 0
      
      # good
      [1, 2, 3].empty?
      "foobar".empty?
      array.empty?
      !{a: 1, b: 2}.empty?
      !string.empty?
      !hash.empty?

      Use next to skip iteration.
      Open

                  if (v.present? && !v.is_a?(Array)) ||
                     (v.is_a?(Array) && v.present? && v.size > 0 && v.first.present?)
      Severity: Minor
      Found in lib/merge.rb by rubocop

      Use next to skip iteration instead of a condition at the end.

      Example: EnforcedStyle: skipmodifierifs (default)

      # bad
      [1, 2].each do |a|
        if a == 1
          puts a
        end
      end
      
      # good
      [1, 2].each do |a|
        next unless a == 1
        puts a
      end
      
      # good
      [1, 2].each do |o|
        puts o unless o == 1
      end

      Example: EnforcedStyle: always

      # With `always` all conditions at the end of an iteration needs to be
      # replaced by next - with `skip_modifier_ifs` the modifier if like
      # this one are ignored: `[1, 2].each { |a| return 'yes' if a == 1 }`
      
      # bad
      [1, 2].each do |o|
        puts o unless o == 1
      end
      
      # bad
      [1, 2].each do |a|
        if a == 1
          puts a
        end
      end
      
      # good
      [1, 2].each do |a|
        next unless a == 1
        puts a
      end

      There are no issues that match your filters.

      Category
      Status