gosuri/roomer

View on GitHub

Showing 9 of 15 total issues

Function generateTOC has 50 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function generateTOC() {
  if ($('#filecontents').length === 0) return;
  var _toc = $('<ol class="top"></ol>');
  var show = false;
  var toc = _toc;
Severity: Minor
Found in doc/js/app.js - About 2 hrs to fix

    Function searchItem has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

    function searchItem() {
      for (var i = 0; i < searchCache.length / 50; i++) {
        var item = searchCache[searchIndex];
        if (item.name.toLowerCase().indexOf(searchString) == -1) {
          item.node.removeClass('found');
    Severity: Minor
    Found in doc/js/full_list.js - 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

    Function fullListSearch has 33 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function fullListSearch() {
      // generate cache
      searchCache = [];
      $('#full_list li').each(function() {
        var link = $(this).find('.object_link a');
    Severity: Minor
    Found in doc/js/full_list.js - About 1 hr to fix

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

          def self.dump(scope=:tenanted)
            unless Roomer.heroku_safe && ENV['HEROKU_UPID']
              case scope
                when :shared
                  schema_name = Roomer.shared_schema_name.to_s
      Severity: Minor
      Found in lib/roomer/schema.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 indexes has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def indexes(table, stream)
            if (indexes = @connection.indexes(table)).any?
              add_index_statements = indexes.map do |index|
                statement_parts = [ ('add_index ' + index.table.inspect) ]
                statement_parts << index.columns.inspect
      Severity: Minor
      Found in lib/roomer/schema_dumper.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 reset_associations has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

              def reset_associations
                reflections.each_value do |r|
                  r.instance_variable_set(:@quoted_table_name, nil)
                  table_name = r.instance_variable_get(:@table_name)
                  if (table_name)
      Severity: Minor
      Found in lib/roomer/extensions/model.rb - About 45 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 status has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

            def status(schema_name,migrations_directory)
              db_list = ActiveRecord::Base.connection.select_values("SELECT version FROM #{ActiveRecord::Migrator.schema_migrations_table_name}")
              db_list.map! { |version| "%.3d" % version }
              file_list = []
              Dir.foreach(migrations_directory) do |file|
      Severity: Minor
      Found in lib/roomer/helpers/migration_helper.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 ensuring_schema has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

            def ensuring_schema(schema_name, &block)
              raise ArgumentError.new("schema_name not present") unless schema_name
              ActiveRecord::Migration.verbose = ENV["VERBOSE"] ? ENV["VERBOSE"] == "true" : true
              create_schema(schema_name) unless schemas.include?(schema_name.to_s)
              ensure_prefix(schema_name) do
      Severity: Minor
      Found in lib/roomer/helpers/postgres_helper.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 load has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def self.load(schema_name, scope=:tenanted)
            ensuring_schema(schema_name) do
              filename = begin
                if scope == :shared
                  Roomer.shared_schema_filename
      Severity: Minor
      Found in lib/roomer/schema.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