box-o-sand/math-replay/config.ru
2012-06-15 00:32:06 -04:00

7 lines
195 B
Ruby
Executable File

#!/usr/bin/env rackup
use Rack::ContentLength
root = File.expand_path('./algebra', File.dirname(__FILE__))
app = Rack::Directory.new(root)
puts "Serving #{root} (see --help for options)"
run app