binarybabel/gem-versioneer

View on GitHub

Showing 5 of 5 total issues

Method release_ref has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
Open

    def release_ref
      cmd = 'git describe --abbrev=0 --tags'
      ref = `#{cmd} #{H.cl_no_stderr}`.chomp
      return nil if ref.empty?
      if ref.match(release_pattern)
Severity: Minor
Found in lib/versioneer/git.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 initialize has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

    def initialize(base_dir_or_config_file, repo_options=nil)
      base_dir_or_config_file = base_dir_or_config_file.to_s
      repo_options = Hash.new unless repo_options.is_a? Hash

      if File.directory?(base_dir_or_config_file)
Severity: Minor
Found in lib/versioneer/config.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 version has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    def version
      prerelease = nil
      c = commits_since_release

      if environment == 'production'
Severity: Minor
Found in lib/versioneer/repo.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 repo has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    def repo
      return @repo unless @repo.nil?
      @repo = case locked?
                when true
                  Bypass.new(@config_base, :release => version)
Severity: Minor
Found in lib/versioneer/config.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 bump has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    def self.bump(version, bump_segment, prerelease_suffix=nil, bump_count=1)
      length = segment_to_i(bump_segment) + 1 unless bump_segment.nil?

      if version.prerelease? or bump_segment.nil?
        next_version = (version.release.segments + [prerelease_suffix]).compact.join('.')
Severity: Minor
Found in lib/versioneer/repo.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

Severity
Category
Status
Source
Language