Module: Paperclip::InstanceMethods

Defined in:
lib/paperclip.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#attachment_for(name) ⇒ Object



208
209
210
211
# File 'lib/paperclip.rb', line 208

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

#destroy_attached_filesObject



225
226
227
228
229
230
# File 'lib/paperclip.rb', line 225

def destroy_attached_files
  each_attachment do |name, attachment|
    attachment.send(:queue_existing_for_delete)
    attachment.send(:flush_deletes)
  end
end

#each_attachmentObject



213
214
215
216
217
# File 'lib/paperclip.rb', line 213

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

#save_attached_filesObject



219
220
221
222
223
# File 'lib/paperclip.rb', line 219

def save_attached_files
  each_attachment do |name, attachment|
    attachment.send(:save)
  end
end