class ActionDispatch::FileHandler

def try_files(filepath, content_type, accept_encoding:)

Experimental RBS support (using type sampling data from the type_fusion project).

def try_files: (String filepath, String content_type, accept_encoding: Array[Array, String, Float]) -> nil

This signature was generated using 4 samples from 2 applications.

def try_files(filepath, content_type, accept_encoding:)
  headers = { "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