ssut/telegram-rb

View on GitHub
lib/telegram/api.rb

Summary

Maintainability
B
5 hrs
Test Coverage

Method update_chats! has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

    def update_chats!
      assert!
      callback = Callback.new
      
      collected = 0
Severity: Minor
Found in lib/telegram/api.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 update_chats! has 30 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def update_chats!
      assert!
      callback = Callback.new
      
      collected = 0
Severity: Minor
Found in lib/telegram/api.rb - About 1 hr to fix

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

        def update_contacts!
          assert!
          callback = Callback.new
          @contacts = []
          @connection.communicate('contact_list') do |success, data|
    Severity: Minor
    Found in lib/telegram/api.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_profile! has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def update_profile!
          assert!
          callback = Callback.new
          @profile = nil
          @connection.communicate('get_self') do |success, data|
    Severity: Minor
    Found in lib/telegram/api.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 update! has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def update!(&cb)
          done = false
          EM.synchrony do
            multi = EM::Synchrony::Multi.new
            multi.add :profile, update_profile!
    Severity: Minor
    Found in lib/telegram/api.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

    There are no issues that match your filters.

    Category
    Status