groundtruth/restful_geof

View on GitHub
lib/restful_geof/store.rb

Summary

Maintainability
B
5 hrs
Test Coverage

Method query has 54 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def query(params={ :conditions => {} })
      # TODO: clarify naming of conditions, options, query.

      params[:conditions][:is] ||= {}
      params[:conditions][:in] ||= {}
Severity: Major
Found in lib/restful_geof/store.rb - About 2 hrs to fix

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

        def query(params={ :conditions => {} })
          # TODO: clarify naming of conditions, options, query.
    
          params[:conditions][:is] ||= {}
          params[:conditions][:in] ||= {}
    Severity: Minor
    Found in lib/restful_geof/store.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 initialize has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def initialize(database, table_name)
          options = { dbname: database }
          options[:host] = ENV["RESTFUL_GEOF_PG_HOST"] || "localhost"
          options[:port] = ENV["RESTFUL_GEOF_PG_PORT"] || "5432"
          options[:user] = ENV["RESTFUL_GEOF_PG_USERNAME"] if ENV["RESTFUL_GEOF_PG_USERNAME"]
    Severity: Minor
    Found in lib/restful_geof/store.rb - About 1 hr to fix

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

          def initialize(database, table_name)
            options = { dbname: database }
            options[:host] = ENV["RESTFUL_GEOF_PG_HOST"] || "localhost"
            options[:port] = ENV["RESTFUL_GEOF_PG_PORT"] || "5432"
            options[:user] = ENV["RESTFUL_GEOF_PG_USERNAME"] if ENV["RESTFUL_GEOF_PG_USERNAME"]
      Severity: Minor
      Found in lib/restful_geof/store.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 update has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def update(params)
            feature = RGeo::GeoJSON.decode(params[:body_json], :json_parser => :json)
            properties = Hash[feature.properties.map { |k,v| [esc_i(k), i_or_quoted_s_for(v, k)] }]
      
            unless feature.properties[@table_info.id_column].to_s == params[:id].to_s
      Severity: Minor
      Found in lib/restful_geof/store.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

      There are no issues that match your filters.

      Category
      Status