projects
/
coquelicot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add :depot_path setting
[coquelicot.git]
/
config.ru
1
require 'sinatra'
2
3
set :environment, :development
4
set :raise_errors, true
5
set :depot_path, Proc.new { File.join(root, "files") }
6
disable :run
7
8
require 'coquelicot'
9
run Sinatra::Application