1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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 295a7fd1bb
commit 128467e927

View file

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