Module: Paperclip::InstanceMethods

Defined in:
lib/paperclip.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#attachment_for(name) ⇒ Object



234
235
236
237
# File 'lib/paperclip.rb', line 234

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

#destroy_attached_filesObject



252
253
254
255
256
257
258
# File 'lib/paperclip.rb', line 252

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



239
240
241
242
243
# File 'lib/paperclip.rb', line 239

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

#save_attached_filesObject



245
246
247
248
249
250
# File 'lib/paperclip.rb', line 245

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