reduce file stats by improving our dir glob pattern

This commit is contained in:
Aaron Patterson
2011-08-08 21:42:45 -07:00
parent 6e2e06043e
commit 4c492865b1

View File

@@ -239,7 +239,7 @@ module ActionView
exts.each do |ext|
query << "{"
ext.compact.each { |e| query << ".#{e}," }
ext.compact.uniq.each { |e| query << ".#{e}," }
query << "}"
end