added a config.ru for rack/local dev

This commit is contained in:
okor
2012-08-29 12:45:09 -04:00
parent a88bab38c4
commit be62711f5c
+2
View File
@@ -0,0 +1,2 @@
use Rack::Static, :urls => ["/css", "/images", "/js", "/views"], :root => "."
run lambda { |env| [200, { 'Content-Type' => 'text/html' }, File.open('index.html', File::RDONLY)] }