# File lib/rack/lock.rb, line 12 12: def call(env) 13: old, env[FLAG] = env[FLAG], false 14: @mutex.lock 15: response = @app.call(env) 16: response[2] = BodyProxy.new(response[2]) { @mutex.unlock } 17: response 18: rescue Exception 19: @mutex.unlock 20: raise 21: ensure 22: env[FLAG] = old 23: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.