method

build_after_unfurling

build_after_unfurling(io:, filename:, content_type: nil, metadata: nil, identify: true)
public

No documentation available.

# File activestorage/app/models/active_storage/blob.rb, line 60
    def build_after_unfurling(io,, filename,, content_type: nil, metadata: nil, identify: true) #:nodoc:
      new(filename: filename, content_type: content_type, metadata: metadata).tap do |blob|
        blob.unfurl(io, identify: identify)
      end
    end