Created
December 6, 2013 12:55
-
-
Save nateberkopec/7823291 to your computer and use it in GitHub Desktop.
fuckit.rb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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