method
try_files
v8.0.0 -
Show latest stable
- Class:
ActionDispatch::FileHandler
try_files(filepath, content_type, accept_encoding:)private
No documentation available.
# File actionpack/lib/action_dispatch/middleware/static.rb, line 112
def try_files(filepath, content_type, accept_encoding))
headers = { Rack::CONTENT_TYPE => content_type }
if compressible? content_type
try_precompressed_files filepath, headers, accept_encoding: accept_encoding
elsif file_readable? filepath
[ filepath, headers ]
end
end