method
each_precompressed_filepath
v6.1.7.7 -
Show latest stable
- Class:
ActionDispatch::FileHandler
each_precompressed_filepath(filepath)private
No documentation available.
# File actionpack/lib/action_dispatch/middleware/static.rb, line 151
def each_precompressed_filepath(filepath)
@precompressed.each do |content_encoding|
precompressed_ext = PRECOMPRESSED.fetch(content_encoding)
yield content_encoding, "#{filepath}#{precompressed_ext}"
end
nil
end