Created
April 15, 2016 11:51
-
-
Save rennex/8d5e8c0ef1a9d649659aa5ba587c2eb5 to your computer and use it in GitHub Desktop.
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
require "sinatra" | |
get "/*" do | |
content_type "text/plain" | |
ret = "" | |
env.each_key do |k| | |
ret += "%25s = %s\n" % [k, env[k]] | |
end | |
ret | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment