actionframework/actionframework

View on GitHub

Showing 5 of 5 total issues

Method call has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        def call env
            req = Rack::Request.new(env)
            res = Rack::Response.new

            # redirection
Severity: Minor
Found in lib/actionframework.rb - About 1 hr to fix

    Method initialize has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

          def initialize(url,req,env,payload,socket)
    Severity: Minor
    Found in lib/actionframework/realtime_controller.rb - About 35 mins to fix

      Method perform_action has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

              def perform_action(env,req,path,method,payload)
      Severity: Minor
      Found in lib/actionframework/realtime.rb - About 35 mins to fix

        Method run has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def run(execute_cmd,env,req,res,url)
        Severity: Minor
        Found in lib/actionframework/controller_supervisor.rb - About 35 mins to fix

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

                  def getModelResponse req,res
                      if(matcheddata = req.path.match(Regexp.new("/api/(?<modelname>(.*))")))
                              return nil unless @routesklass.models.include?(matcheddata[:modelname])
          
                              res["Content-type"] = "application/json"
          Severity: Minor
          Found in lib/actionframework.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