Skip to content

Instantly share code, notes, and snippets.

@guilleiguaran
Last active August 29, 2015 14:02
Show Gist options
  • Save guilleiguaran/385c59a9d60d12aea12d to your computer and use it in GitHub Desktop.
Save guilleiguaran/385c59a9d60d12aea12d to your computer and use it in GitHub Desktop.
require 'gctools/oobgc'
class GcObb
def initialize(app)
@app = app
end
def call(env)
response = @app.call(env)
env['rack.after_reply'] << proc { GC::OOB.run }
response
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment