Skip to content

Instantly share code, notes, and snippets.

@zph
Created November 1, 2014 21:14
Show Gist options
  • Select an option

  • Save zph/d0c714c9d370cdf71674 to your computer and use it in GitHub Desktop.

Select an option

Save zph/d0c714c9d370cdf71674 to your computer and use it in GitHub Desktop.
require 'pp'
require 'sinatra'
get '/' do
key_env = env.dup
useful = key_env.delete_if { |k, v| !k[/^HTTP_/] }.sort
useful.map do |k,v|
"#{k} => #{ v }"
end.join("<br>")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment