Skip to content

Instantly share code, notes, and snippets.

@carld
Created April 6, 2018 01:43
Show Gist options
  • Save carld/555f80ef2276b236cae7545dfaa5e673 to your computer and use it in GitHub Desktop.
Save carld/555f80ef2276b236cae7545dfaa5e673 to your computer and use it in GitHub Desktop.
rack app
require 'rack'
app = Proc.new do |env|
['200', {'Content-Type' => 'text/html'}, [env.to_s]]
end
Rack::Handler::WEBrick.run app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment