Flowdock
method

build_after_unfurling

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: Blob
build_after_unfurling(io:, filename:, content_type: nil, metadata: nil, identify: true) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.