piotrmurach/strings-numeral

View on GitHub

Showing 11 of 11 total issues

File numeral.rb has 390 lines of code (exceeds 250 allowed). Consider refactoring.
Open

require "forwardable"

require_relative "numeral/configuration"
require_relative "numeral/version"

Severity: Minor
Found in lib/strings/numeral.rb - About 5 hrs to fix

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

        def monetize(num, **options)
          check_number(num, **options)
          sep = options.fetch(:separator, @configuration.separator)
          curr_name = options.fetch(:currency, @configuration.currency)
          n = format("%0.2f", num.to_s)
    Severity: Minor
    Found in lib/strings/numeral.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 convert_numeral has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

        def convert_numeral(num, **options)
          delimiter = options.fetch(:delimiter, @configuration.delimiter)
          decimal = options.fetch(:decimal, @configuration.decimal)
          separator = options.fetch(:separator, @configuration.separator)
    
    
    Severity: Minor
    Found in lib/strings/numeral.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 ordinalize has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def ordinalize(num, **options)
          check_number(num, **options)
          if options[:short]
            ordinalize_short(num)
          else
    Severity: Minor
    Found in lib/strings/numeral.rb - About 1 hr to fix

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

          def ordinalize(num, **options)
            check_number(num, **options)
            if options[:short]
              ordinalize_short(num)
            else
      Severity: Minor
      Found in lib/strings/numeral.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 convert_decimals has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def convert_decimals(num, **options)
            delimiter = options.fetch(:delimiter, @configuration.delimiter)
            decimal = options.fetch(:decimal, @configuration.decimal)
            trailing_zeros = options.fetch(:trailing_zeros, @configuration.trailing_zeros)
      
      
      Severity: Minor
      Found in lib/strings/numeral.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 update has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

            def update(currency: nil, delimiter: nil, separator: nil, decimal: nil,
                       trailing_zeros: nil, strict: nil)
              @currency = currency if currency
              @delimiter = delimiter if delimiter
              @separator = separator if separator
      Severity: Minor
      Found in lib/strings/numeral/configuration.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 convert_to_words has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def convert_to_words(n)
            words = []
      
            SCALES.each_with_index do |scale, i|
              mod = n % 1000
      Severity: Minor
      Found in lib/strings/numeral.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 convert_tens has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def convert_tens(num)
            word = []
            tens = num % 100
      
            if tens.to_s.size < 2 || tens <= 20
      Severity: Minor
      Found in lib/strings/numeral.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

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          CARDINAL_TO_SHORT_ORDINAL = {
            0 => "th",
            1 => "st",
            11 => "th",
            2 => "nd",
      Severity: Minor
      Found in lib/strings/numeral.rb and 1 other location - About 25 mins to fix
      lib/strings/numeral.rb on lines 97..110

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 29.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          CARDINAL_TO_ROMAN = {
            1 => "I",
            4 => "IV",
            5 => "V",
            9 => "IX",
      Severity: Minor
      Found in lib/strings/numeral.rb and 1 other location - About 25 mins to fix
      lib/strings/numeral.rb on lines 50..63

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 29.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Severity
      Category
      Status
      Source
      Language