From 8f074a65e1723a775d062ef6518505f9d5e8c89b Mon Sep 17 00:00:00 2001 From: Martin Charles Date: Sat, 17 May 2014 17:33:04 -0400 Subject: [PATCH] Removed Directory Caching --- lib/travis/web/app.rb | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lib/travis/web/app.rb b/lib/travis/web/app.rb index b6cc3a7d..0fc33d75 100644 --- a/lib/travis/web/app.rb +++ b/lib/travis/web/app.rb @@ -99,10 +99,6 @@ class Travis::Web::App Dir.glob(File.join(root, '**/*')) { |file| yield file if File.file?(file) } end - def prefix?(file) - file =~ /^(styles|scripts)\// - end - def config_needed?(file) index?(file) || file.end_with?('spec.html') end @@ -129,7 +125,6 @@ class Travis::Web::App def path_for(file) file = file.sub("#{root}/", '') - file = File.join(version, file) if prefix?(file) file = "" if index?(file) "/#{file}" end @@ -144,7 +139,7 @@ class Travis::Web::App end string.gsub! %r{(src|href)="(?:\/?)((styles|scripts)\/[^"]*)"} do - %(#{$1}=#{opts[:alt] ? "#{S3_URL}/#{opts[:alt]}/#{$2}" : "/#{version}/#{$2}"}) + %(#{$1}=#{opts[:alt] ? "#{S3_URL}/#{opts[:alt]}/#{$2}":"/#{$2}"}) end end end