Module: Paperclip::InstanceMethods

Defined in:
lib/paperclip.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#attachment_for(name) ⇒ Object



349
350
351
352
# File 'lib/paperclip.rb', line 349

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

#destroy_attached_filesObject



367
368
369
370
371
372
373
# File 'lib/paperclip.rb', line 367

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

#each_attachmentObject



354
355
356
357
358
# File 'lib/paperclip.rb', line 354

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

#save_attached_filesObject



360
361
362
363
364
365
# File 'lib/paperclip.rb', line 360

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