travis-web/waiter/lib/travis/web.rb
Piotr Sarnacki 8959f382c2 Move server/ to waiter/
Apparently server dir conflicts with some scripts in ember-cli
2015-02-03 10:13:48 +01:00

14 lines
342 B
Ruby

module Travis
module Web
autoload :Allow, 'travis/web/allow'
autoload :ApiRedirect, 'travis/web/api_redirect'
autoload :App, 'travis/web/app'
autoload :Config, 'travis/web/config'
autoload :SetToken, 'travis/web/set_token'
end
def self.config
@config ||= Travis::Web::Config.new
end
end