Skip to content

Instantly share code, notes, and snippets.

@rennex
Created April 15, 2016 11:51
Show Gist options
  • Save rennex/8d5e8c0ef1a9d649659aa5ba587c2eb5 to your computer and use it in GitHub Desktop.
Save rennex/8d5e8c0ef1a9d649659aa5ba587c2eb5 to your computer and use it in GitHub Desktop.
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