Skip to content

Instantly share code, notes, and snippets.

@2get
Created December 17, 2014 13:51
Show Gist options
  • Save 2get/a7613660d677b0212acf to your computer and use it in GitHub Desktop.
Save 2get/a7613660d677b0212acf to your computer and use it in GitHub Desktop.
Hello Rack
require 'rack'
class HelloRack
def call(env)
[200, { 'Content-Type' => 'text/html' }, ['Hello Rack!']]
end
end
run HelloRack.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment