Sha256: 1ae1a876fc2a8fabbbc259264824706d9579a0bc88cffc14c5c2a882b455f230
Contents?: true
Size: 273 Bytes
Versions: 65
Compression:
Stored size: 273 Bytes
Contents
module Errplane class Rack def initialize(app) @app = app end def call(env) begin response = @app.call(env) rescue => e Errplane.transmit_unless_ignorable(e, env) raise(e) end response end end end
Version data entries
65 entries across 65 versions & 1 rubygems