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
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