Module: Paperclip::InstanceMethods

Defined in:
lib/paperclip.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#attachment_for(name) ⇒ Object



459
460
461
462
# File 'lib/paperclip.rb', line 459

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

#destroy_attached_filesObject



477
478
479
480
481
482
# File 'lib/paperclip.rb', line 477

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

#each_attachmentObject



464
465
466
467
468
# File 'lib/paperclip.rb', line 464

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

#prepare_for_destroyObject



484
485
486
487
488
489
# File 'lib/paperclip.rb', line 484

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



470
471
472
473
474
475
# File 'lib/paperclip.rb', line 470

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