public
Description: a browser based Timekeeper application for conferences.
Homepage: http://kakutani.com/products/kaigi_timekeeper/
Clone URL: git://github.com/kakutani/kaigi_timekeeper.git
kakutani (author)
Sat Aug 23 10:40:35 -0700 2008
commit  c9f4f2ed7c350c95e22e5da27d381a34a2671fe5
tree    583cd72d78790504142bac9b6df779e07a8e2dc9
parent  0735a3f77b3a2b8b7f4477cf0842a62b08a4e12a
kaigi_timekeeper / timekeepersrv
100755 10 lines (8 sloc) 0.198 kb
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env ruby
require 'webrick'
 
server = WEBrick::HTTPServer.new(
  :Port => 8111,
  :DocumentRoot => File.expand_path(File.dirname(__FILE__))
  )
trap("INT"){ server.shutdown }
server.start