https://github.com/rack/rack
gem 'rack'
run ->(env) { [200, {"Content-Type" => "text/html"}, ["Hello World!"]] }
$ rackup app.rb