rack-livereload/config.ru

14 lines
185 B
Plaintext
Raw Normal View History

2011-11-04 15:51:22 +00:00
require 'sinatra'
$: << 'lib'
require 'rack/livereload'
use Rack::LiveReload
get '/' do
"<html><head><title>Hi</title></head><body>Hi</body></html>"
end
run Sinatra::Application