class ActiveStorage::Attached::Changes::CreateOne
def upload
def upload case attachable when ActionDispatch::Http::UploadedFile, Rack::Test::UploadedFile blob.upload_without_unfurling(attachable.open) when Hash blob.upload_without_unfurling(attachable.fetch(:io)) end end