Sha256: fcc2e0157210d5f207b2c0d780b5b009ccdbb3cc391a2c62a8f6c632a65f847b
Contents?: true
Size: 341 Bytes
Versions: 8
Compression:
Stored size: 341 Bytes
Contents
module RubyApp module Rack require 'ruby_app' class Memory def initialize(application) @application = application end def call(environment) RubyApp::Log.memory(RubyApp::Log.prefix(self, __method__)) do return @application.call(environment) end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems