Module: Paperclip::InstanceMethods

Defined in:
lib/paperclip.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#attachment_for(name) ⇒ Object



382
383
384
385
# File 'lib/paperclip.rb', line 382

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

#destroy_attached_filesObject



400
401
402
403
404
405
406
# File 'lib/paperclip.rb', line 400

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



387
388
389
390
391
# File 'lib/paperclip.rb', line 387

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

#save_attached_filesObject



393
394
395
396
397
398
# File 'lib/paperclip.rb', line 393

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