Module: Paperclip::InstanceMethods
- Defined in:
- lib/paperclip.rb
Overview
:nodoc:
Instance Method Summary collapse
- #attachment_for(name) ⇒ Object
- #destroy_attached_files ⇒ Object
- #each_attachment ⇒ Object
- #save_attached_files ⇒ Object
Instance Method Details
#attachment_for(name) ⇒ Object
349 350 351 352 |
# File 'lib/paperclip.rb', line 349 def name @_paperclip_attachments ||= {} @_paperclip_attachments[name] ||= Attachment.new(name, self, self.class.[name]) end |
#destroy_attached_files ⇒ Object
367 368 369 370 371 372 373 |
# File 'lib/paperclip.rb', line 367 def destroy_attached_files Paperclip.log("Deleting attachments.") do |name, | .send(:queue_existing_for_delete) .send(:flush_deletes) end end |
#each_attachment ⇒ Object
354 355 356 357 358 |
# File 'lib/paperclip.rb', line 354 def self.class..each do |name, definition| yield(name, (name)) end end |