Module: Paperclip::InstanceMethods

Defined in:
lib/paperclip.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#attachment_for(name) ⇒ Object



411
412
413
414
# File 'lib/paperclip.rb', line 411

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

#destroy_attached_filesObject



429
430
431
432
433
434
# File 'lib/paperclip.rb', line 429

def destroy_attached_files
  Paperclip.log("Deleting attachments.")
  each_attachment do |name, attachment|
    attachment.send(:flush_deletes)
  end
end

#each_attachmentObject



416
417
418
419
420
# File 'lib/paperclip.rb', line 416

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

#prepare_for_destroyObject



436
437
438
439
440
441
# File 'lib/paperclip.rb', line 436

def prepare_for_destroy
  Paperclip.log("Scheduling attachments for deletion.")
  each_attachment do |name, attachment|
    attachment.send(:queue_existing_for_delete)
  end
end

#save_attached_filesObject



422
423
424
425
426
427
# File 'lib/paperclip.rb', line 422

def save_attached_files
  Paperclip.log("Saving attachments.")
  each_attachment do |name, attachment|
    attachment.send(:save)
  end
end