This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Paperclip | |
# A wrapper for a queued item. Normally this would be a temporary file, but we can't do that, because Paperclip | |
# would copy the temporary file before the content is actually written. | |
class BulkQueueItem | |
attr_reader :destination | |
def initialize(destination) | |
@destination = destination | |
end | |
end |