Sha256: 998c1506ec9727d7dc67955926d727078064f4fba61254e9a1ace99ee4cfdbfc
Contents?: true
Size: 362 Bytes
Versions: 130
Compression:
Stored size: 362 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::DEBUG, RubyApp::Log.prefix(self, __method__)) do return @application.call(environment) end end end end end
Version data entries
130 entries across 130 versions & 1 rubygems