28 lines
764 B
Ruby
28 lines
764 B
Ruby
require 'travis/api/app'
|
|
require 'sinatra/base'
|
|
|
|
class Travis::Api::App
|
|
# Superclass for any endpoint and middleware.
|
|
# Pulls in relevant helpers and extensions.
|
|
class Responder < Sinatra::Base
|
|
register Extensions::SmartConstants
|
|
|
|
configure do
|
|
# We pull in certain protection middleware in App.
|
|
# Being token based makes us invulnerable to common
|
|
# CSRF attack.
|
|
#
|
|
# Logging is set up by custom middleware
|
|
disable :protection, :logging, :setup
|
|
register :subclass_tracker
|
|
helpers :json_renderer
|
|
end
|
|
|
|
configure :development do
|
|
# We want error pages in development, but only
|
|
# when we don't have an error handler specified
|
|
set :show_exceptions, :after_handler
|
|
end
|
|
end
|
|
end
|