Flowdock
method

call

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: DebugLocks
call(env) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/middleware/debug_locks.rb, line 31
    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
Register or log in to add new notes.