Add 'build/' from commit '555b039609a3c8700c27767c255fdfe00eb42063'
[arvados.git] / services / arv-web / sample-rack-app / config.ru
1 app = proc do |env|
2     [200, { "Content-Type" => "text/html" }, ["hello <b>world</b> from ruby"]]
3 end
4 run app