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