Skip to content

Instantly share code, notes, and snippets.

@yorickpeterse
Created March 21, 2014 13:02
Show Gist options
  • Save yorickpeterse/758498a9baaee4ff8283 to your computer and use it in GitHub Desktop.
Save yorickpeterse/758498a9baaee4ff8283 to your computer and use it in GitHub Desktop.
require 'rack'
class Amazing
def call(env)
return ['200 WTF', {'Content-Type' => 'text/plain'}, ['welp']]
end
end
run Amazing.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment