repo.or.cz
/
maraby.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added simple Rack app.
[maraby.git]
/
simple_rack_app
/
ss.rb~
blob
7f165ac404401a3ad66e636085006d308dae8700
1
$:.unshift(File.dirname(__FILE__))
2
3
require 'simple'
4
5
class SimpleServer < Simple::Server
6
def run(uri)
7
@logger.info "woooo"
8
[200, {}, ['woooo']]
9
end
10
end