instance method upload_with_multipart

Ruby on Rails 8.0.4

Since v6.1.7.10 Private

Available in: v6.1.7.10 v7.0.10 v7.1.6 v7.2.3 v8.0.4 v8.1.2

Signature

upload_with_multipart(key, io, content_type: nil, content_disposition: nil, custom_metadata: {})

No documentation comment.

Parameters

key req
io req
content_type key = nil
content_disposition key = nil
custom_metadata key = {}
Source
# File activestorage/lib/active_storage/service/s3_service.rb, line 148
      def upload_with_multipart(key, io, content_type: nil, content_disposition: nil, custom_metadata: {})
        part_size = [ io.size.fdiv(MAXIMUM_UPLOAD_PARTS_COUNT).ceil, MINIMUM_UPLOAD_PART_SIZE ].max

        upload_stream(
          key: key,
          content_type: content_type,
          content_disposition: content_disposition,
          part_size: part_size,
          metadata: custom_metadata,
          **upload_options
        ) do |out|
          IO.copy_stream(io, out)
        end
      end

Defined in activestorage/lib/active_storage/service/s3_service.rb line 148 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActiveStorage::Service::S3Service

Type at least 2 characters to search.

↑↓ navigate · open · esc close