Skip to content

Instantly share code, notes, and snippets.

@nateberkopec
Created December 6, 2013 12:55
Show Gist options
  • Save nateberkopec/7823291 to your computer and use it in GitHub Desktop.
Save nateberkopec/7823291 to your computer and use it in GitHub Desktop.
fuckit.rb
module Rack
class Fuckit
def initialize(app)
@app = app
end
def call(env)
@app.call(env) rescue nil
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment