Module: Paperclip::InstanceMethods

Defined in:
lib/paperclip.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#attachment_for(name) ⇒ Object



276
277
278
279
# File 'lib/paperclip.rb', line 276

def attachment_for name
  @_paperclip_attachments ||= {}
  @_paperclip_attachments[name] ||= Attachment.new(name, self, self.class.attachment_definitions[name])
end

#destroy_attached_filesObject



294
295
296
297
298
299
300
# File 'lib/paperclip.rb', line 294

def destroy_attached_files
  logger.info("[paperclip] Deleting attachments.")
  each_attachment do |name, attachment|
    attachment.send(:queue_existing_for_delete)
    attachment.send(:flush_deletes)
  end
end

#each_attachmentObject



281
282
283
284
285
# File 'lib/paperclip.rb', line 281

def each_attachment
  self.class.attachment_definitions.each do |name, definition|
    yield(name, attachment_for(name))
  end
end

#save_attached_filesObject



287
288
289
290
291
292
# File 'lib/paperclip.rb', line 287

def save_attached_files
  logger.info("[paperclip] Saving attachments.")
  each_attachment do |name, attachment|
    attachment.send(:save)
  end
end