travis-web/config.ru
2012-07-22 15:10:34 +02:00

29 lines
407 B
Ruby

$: << 'lib'
require 'sinatra'
require 'travis/api/app'
class App < Sinatra::Base
use Travis::Api::App
disable :protection
set :root, File.dirname(__FILE__)
set :public_folder, lambda { "#{root}/public" }
set :static_cache_control, :public
provides :html
get '*' do
File.new('public/index.html').readlines
end
not_found do
'Not found.'
end
end
use Rack::Deflater
run App