Sha256: b8657f22c1519da42b3b2e0948e9cc79efbed41d0f9b65751a44fb2dcafbe912
Contents?: true
Size: 408 Bytes
Versions: 148
Compression:
Stored size: 408 Bytes
Contents
module RubyApp module Rack require 'ruby_app' class Response def initialize(application) @application = application end def call(environment) RubyApp::Response.create! begin @application.call(environment) return RubyApp::Response.finish ensure RubyApp::Response.destroy! end end end end end
Version data entries
148 entries across 148 versions & 1 rubygems