public
Description: A Simple http proxy for controlling the spotlights at work
Homepage: http://whomwah.com
Clone URL: git://github.com/whomwah/light-controller.git
light-controller / config.ru
100644 12 lines (8 sloc) 0.219 kb
1
2
3
4
5
6
7
8
9
10
11
12
require 'rubygems'
require 'sinatra'
 
root_dir = File.dirname(__FILE__)
 
set :environment, :development
set :root, root_dir
set :app_file, File.join(root_dir, 'app.rb')
disable :run
 
run Sinatra::Application