Skip to content

Instantly share code, notes, and snippets.

@veronicacannon
Created March 17, 2018 22:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veronicacannon/3d70ed0e1fbba424640483564e1f01f8 to your computer and use it in GitHub Desktop.
Save veronicacannon/3d70ed0e1fbba424640483564e1f01f8 to your computer and use it in GitHub Desktop.
https://thoughtbot.com/upcase/videos/rack
require "rack"
require "thin"
class HelloWorld
def call(env)
[ 200, { "Content-Type" => "text/plain" }, ["Hello World"] ]
end
end
Rack::Handler::Thin.run HelloWorld.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment