Skip to content

Instantly share code, notes, and snippets.

@yuki24
Created April 5, 2012 05:37
Show Gist options
  • Save yuki24/2308264 to your computer and use it in GitHub Desktop.
Save yuki24/2308264 to your computer and use it in GitHub Desktop.
simplest rack app
require 'rack'
Rack::Server.start(app: Proc.new{|env| [200, {'Content-Type' => 'text/html'}, env]}, Port: 8080)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment