From f8aa108c4635582b8f34fc6488ee97e7da5e2afb Mon Sep 17 00:00:00 2001 From: Sven Fuchs <me@svenfuchs.com> Date: Mon, 8 Oct 2012 13:41:35 +0200 Subject: [PATCH] fix asset dirs constant --- lib/travis/web/app.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/travis/web/app.rb b/lib/travis/web/app.rb index ac867957..03538804 100644 --- a/lib/travis/web/app.rb +++ b/lib/travis/web/app.rb @@ -3,7 +3,7 @@ require 'rack/protection/path_traversal' module Travis::Web class App - ASSET_DIRS = %r(/(stylesheets|javascripts)/) + ASSET_DIRS = %r(/(styles|scripts)/) autoload :Api, 'travis/web/app/api' autoload :Assets, 'travis/web/app/assets'