Skip to content

Instantly share code, notes, and snippets.

@yeonwoonj
yeonwoonj / web_server.rb
Created March 13, 2011 11:50
a simple web server written in ruby-lang.
require 'socket'
# --- func def for application
def application(name, &block)
$app = Application.new
$app.name = name
$app.instance_eval(&block)
end