marano/bgirlz

View on GitHub
lib/model.rb

Summary

Maintainability
C
1 day
Test Coverage

Class Page has 39 methods (exceeds 20 allowed). Consider refactoring.
Open

class Page
  include MongoMapper::Document

  key :name, String
  key :middle_initial, String
Severity: Minor
Found in lib/model.rb - About 5 hrs to fix

    File model.rb has 276 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require 'open-uri'
    
    class Page
      include MongoMapper::Document
    
    
    Severity: Minor
    Found in lib/model.rb - About 2 hrs to fix

      Method publish! has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

        def self.publish!(name, middle_initial, last_name, event, enable_comments, content)
      Severity: Minor
      Found in lib/model.rb - About 45 mins to fix

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

          def self.publish!(name, middle_initial, last_name, event, enable_comments, content)
            return if invalid_page?(name, content)
        
            page_data = {name: name, middle_initial: middle_initial, last_name: last_name, event: event, :content => content, :enable_comments => enable_comments == 'on'}
        
        
        Severity: Minor
        Found in lib/model.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