Removed Directory Caching

This commit is contained in:
Martin Charles 2014-05-17 17:33:04 -04:00
parent a62649401b
commit 8f074a65e1

View File

@ -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