travis-web/config.ru
Piotr Sarnacki c4a57550e5 Run API before ember's app
Ember's serving app has catch-all route, so it needs to be run after API
2012-08-10 13:49:53 +02:00

27 lines
455 B
Ruby

$: << 'lib'
require 'sinatra'
require 'travis/api/app'
class App < Sinatra::Base
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 Rack::Cascade.new([Travis::Api::App.new(disable_root_endpoint: true), App])