method

call

rails latest stable - Class: ActionDispatch::DebugLocks
call(env)
public

No documentation available.

# File actionpack/lib/action_dispatch/middleware/debug_locks.rb, line 33
    def call(env)
      req = ActionDispatch::Request.new env

      if req.get?
        path = req.path_info.chomp("/")
        if path == @path
          return render_details(req)
        end
      end

      @app.call(env)
    end