class ActionDispatch::FileHandler
def try_files(filepath, content_type, accept_encoding:)
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