class Rack::Multipart::UploadedFile

Despite the misleading name, UploadedFile is designed for use for preparing multipart file upload bodies, generally for use in tests. It is not designed for and should not be used for handling uploaded files (there is no need for that, since Rack’s multipart parser already creates Tempfiles for that). Using this with non-trusted filenames can create a security vulnerability.

You should only use this class if you plan on passing the instances to Rack::MockRequest for use in creating multipart request bodies.

UploadedFile delegates most methods to the tempfile it contains.