Sha256: e527705958fdc7e769d00470a77e3ace42db05753faf8934f4cf59857a489be1
Contents?: true
Size: 366 Bytes
Versions: 130
Compression:
Stored size: 366 Bytes
Contents
module RubyApp module Rack require 'ruby_app' class Duration def initialize(application) @application = application end def call(environment) RubyApp::Log.duration(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