adhearsion/ruby_speech

View on GitHub

Showing 9 of 13 total issues

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

      def repeat=(r)
        r = "#{r.min}-#{r.max unless r.max == Inf}" if r.is_a?(Range)
        r = r.to_s
        error = ArgumentError.new "A Item's repeat must be 0 or a positive integer"

Severity: Minor
Found in lib/ruby_speech/grxml/item.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 inline! has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

      def inline!
        previous_uris = {}
        loop do
          rule = nil
          uris = {}
Severity: Minor
Found in lib/ruby_speech/grxml/grammar.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 + has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    def +(other)
      new_doc = Nokogiri::XML::Document.new
      self.class.new(new_doc).tap do |new_element|
        new_doc.root = new_element.node
        string_types = [String, Nokogiri::XML::Text]
Severity: Minor
Found in lib/ruby_speech/generic_element.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 children has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    def children(type = nil, attributes = nil)
      if type
        expression = namespace_href ? 'ns:' : ''
        expression << type.to_s

Severity: Minor
Found in lib/ruby_speech/generic_element.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 inline! has 27 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def inline!
        previous_uris = {}
        loop do
          rule = nil
          uris = {}
Severity: Minor
Found in lib/ruby_speech/grxml/grammar.rb - About 1 hr to fix

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

          def element_children_key_value(element)
            return element.children.first.content if element.children.first.is_a?(Nokogiri::XML::Text)
            element.children.inject({}) do |acc, child|
              acc[child.node_name.to_sym] = case child.children.count
              when 0
    Severity: Minor
    Found in lib/ruby_speech/nlsml/document.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 import has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

          def import(node)
            node = Nokogiri::XML.parse(node, nil, nil, Nokogiri::XML::ParseOptions::NOBLANKS).root unless node.is_a?(Nokogiri::XML::Node) || node.is_a?(GenericElement)
            return node.content if node.is_a?(Nokogiri::XML::Text)
            klass = class_from_registration node.node_name
            if klass && klass != self
    Severity: Minor
    Found in lib/ruby_speech/generic_element.rb - About 35 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 tokenize! has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

          def tokenize!
            traverse do |element|
              next unless element.is_a? Nokogiri::XML::Text
    
              element_type = self.class.import(element.parent).class
    Severity: Minor
    Found in lib/ruby_speech/grxml/grammar.rb - About 35 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 from_uri has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def self.from_uri(uri)
          match = uri.match(URI_REGEX)
          raise ArgumentError, "Only builtin grammars are supported" unless match
          raise ArgumentError, "Only DTMF builtins are supported" unless match[:class] == 'dtmf'
          type = match[:type]
    Severity: Minor
    Found in lib/ruby_speech/grxml.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