collectiveidea/tinder

View on GitHub

Showing 3 of 3 total issues

Class Room has 37 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Room
    attr_reader :id, :name

    def initialize(connection, attributes = {})
      @connection = connection
Severity: Minor
Found in lib/tinder/room.rb - About 4 hrs to fix

    Method listen has 32 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def listen(options = {})
          raise ArgumentError, "no block provided" unless block_given?
    
          Tinder.logger.info "Joining #{@name}…"
          join # you have to be in the room to listen
    Severity: Minor
    Found in lib/tinder/room.rb - About 1 hr to fix

      Method initialize has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def initialize(subdomain, options = {})
            @subdomain = subdomain
            @options = {:ssl => true, :ssl_options => {:verify => true}, :proxy => ENV['HTTP_PROXY']}
            @options[:ssl_options][:verify] = options.delete(:ssl_verify) unless options[:ssl_verify].nil?
            @options.merge!(options)
      Severity: Minor
      Found in lib/tinder/connection.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