n7v/phonetic

View on GitHub

Showing 28 of 32 total issues

File double_metaphone.rb has 445 lines of code (exceeds 250 allowed). Consider refactoring.
Open

require 'phonetic/algorithm'
require 'phonetic/double_metaphone/code'

module Phonetic
  # The Double Metaphone phonetic encoding algorithm is the second generation
Severity: Minor
Found in lib/phonetic/double_metaphone.rb - About 6 hrs to fix

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

      class DoubleMetaphone < Algorithm
        START_OF_WORD_MAP = {
          # skip these when at start of word
          /^([GKP]N|WR|PS)/ => ['', '', 1],
          # initial 'X' is pronounced 'Z' e.g. 'Xavier'
    Severity: Minor
    Found in lib/phonetic/double_metaphone.rb - About 4 hrs to fix

      Method encode_word has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
      Open

          def self.encode_word(word, options = { size: 4 })
            code_size = options[:size] || 4
            w = word.upcase.gsub(/[^A-Z]/, '')
            return if w.empty?
            two = w[0, 2]
      Severity: Minor
      Found in lib/phonetic/metaphone.rb - About 2 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 encode_j has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

          def self.encode_j(w, i, len, code)
            r = 1
            last = len - 1
            # obvious spanish, 'jose', 'san jacinto'
            if w[i, 4] == 'JOSE' || w[0, 4] =~ /SAN\s/
      Severity: Minor
      Found in lib/phonetic/double_metaphone.rb - About 2 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 encode_word has 45 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def self.encode_word(word, options = { size: 4 })
            code_size = options[:size] || 4
            w = word.upcase.gsub(/[^A-Z]/, '')
            return if w.empty?
            two = w[0, 2]
      Severity: Minor
      Found in lib/phonetic/metaphone.rb - About 1 hr to fix

        Method encode_word has 41 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            def self.encode_word(word, options = { size: 4 })
              code_size = options[:size] || 4
              w = word.strip.upcase
              code = Code.new
              i = 0
        Severity: Minor
        Found in lib/phonetic/double_metaphone.rb - About 1 hr to fix

          Method encode_word has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
          Open

              def self.encode_word(word, options = {})
                w = word.strip.upcase.gsub(/[^A-Z]+/, '')
                i = 0
                code = Code.new
                while i < w.size
          Severity: Minor
          Found in lib/phonetic/dm_soundex.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 encode_c has 33 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              def self.encode_c(w, i, len, code)
                r = 1
                case
                # various germanic
                when c_germanic?(w, i)
          Severity: Minor
          Found in lib/phonetic/double_metaphone.rb - About 1 hr to fix

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

                def self.encode_gh(w, i, code)
                  if i > 0 && !vowel?(w[i - 1])
                    code.add 'K', 'K'
                  # Parker's rule (with some further refinements)
                  elsif !(i > 1 && w[i - 2] =~ /[BHD]/ || # e.g., 'hugh'
            Severity: Minor
            Found in lib/phonetic/double_metaphone.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 encode_s has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
            Open

                def self.encode_s(w, i, len, code)
                  r = 1
                  last = len - 1
                  case
                  # special cases 'island', 'isle', 'carlisle', 'carlysle'
            Severity: Minor
            Found in lib/phonetic/double_metaphone.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 encode_s has 27 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                def self.encode_s(w, i, len, code)
                  r = 1
                  last = len - 1
                  case
                  # special cases 'island', 'isle', 'carlisle', 'carlysle'
            Severity: Minor
            Found in lib/phonetic/double_metaphone.rb - About 1 hr to fix

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

                  def self.encode_sc(w, i, code)
                    # Schlesinger's rule
                    if w[i + 2] == 'H'
                      # dutch origin, e.g. 'school', 'schooner'
                      if w[i + 3, 2] =~ /OO|UY|E[DM]/
              Severity: Minor
              Found in lib/phonetic/double_metaphone.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 encode_g has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

                  def self.encode_g(w, i, len, code)
                    r = 2
                    case
                    when w[i + 1] == 'H'
                      encode_gh(w, i, code)
              Severity: Minor
              Found in lib/phonetic/double_metaphone.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 encode_t has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

                  def self.encode_t(w, i, len, code)
                    r = 1
                    if w[i, 4] =~ /^(TION|TIA|TCH)/
                      code.add 'X', 'X'
                      r += 2
              Severity: Minor
              Found in lib/phonetic/double_metaphone.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 encode_c has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

                  def self.encode_c(w, n)
                    metaph = ''
                    if n == 0 || w[n - 1] != 'S' || !front_vowel?(w[n + 1])
                      case
                      when w[n + 1, 2] == 'IA'
              Severity: Minor
              Found in lib/phonetic/metaphone.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 encode_z has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

                  def self.encode_z(w, i, len, code)
                    r = 1
                    # chinese pinyin e.g. 'zhao'
                    if w[i + 1] == 'H'
                      code.add 'J', 'J'
              Severity: Minor
              Found in lib/phonetic/double_metaphone.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 encode_g has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

                  def self.encode_g(w, n)
                    metaph = ''
                    silent = (w[n + 1] == 'H' && !vowel?(w[n + 2]))
                    silent = true if n > 0 && w[n + 1] == 'N'
                    silent = true if n > 0 && w[n - 1] == 'D' && front_vowel?(w[n + 1])
              Severity: Minor
              Found in lib/phonetic/metaphone.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

              Consider simplifying this complex logical expression.
              Open

                      if i == last && i > 0 && vowel?(w[i - 1]) ||
                         i > 0 && w[i - 1, 5] =~ /[EO]WSK[IY]/ ||
                         w[0, 3] == 'SCH'
                        code.add '', 'F'
                      elsif w[i, 4] =~ /WICZ|WITZ/
              Severity: Major
              Found in lib/phonetic/double_metaphone.rb - About 40 mins to fix

                Consider simplifying this complex logical expression.
                Open

                      elsif !(i > 1 && w[i - 2] =~ /[BHD]/ || # e.g., 'hugh'
                              i > 2 && w[i - 3] =~ /[BHD]/ || # e.g., 'bough'
                              i > 3 && w[i - 4] =~ /[BH]/)    # e.g., 'broughton'
                        # e.g., 'laugh', 'McLaughlin', 'cough', 'gough', 'rough', 'tough'
                        if i > 2 && w[i - 3, 3] =~ /[CGLRT].U/
                Severity: Major
                Found in lib/phonetic/double_metaphone.rb - About 40 mins to fix

                  Method find_code has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      def self.find_code(map, w, i, last = nil, count = 0)
                  Severity: Minor
                  Found in lib/phonetic/dm_soundex.rb - About 35 mins to fix
                    Severity
                    Category
                    Status
                    Source
                    Language