Sha256: 9f07bb642ea0a2b3c8619ec87550445dfc608b3d5c45645363c0defb092b0560
Contents?: true
Size: 359 Bytes
Versions: 61
Compression:
Stored size: 359 Bytes
Contents
class Dispatcher class <<self attr_accessor :time_to_sleep attr_accessor :raise_exception attr_accessor :dispatch_hook def dispatch(cgi, session_options = nil, output = $stdout) dispatch_hook.call(cgi) if dispatch_hook sleep(time_to_sleep || 0) raise raise_exception, "Something died" if raise_exception end end end
Version data entries
61 entries across 61 versions & 2 rubygems