Module: Paperclip::InstanceMethods
- Defined in:
- lib/dm-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
342 343 344 345 |
# File 'lib/dm-paperclip.rb', line 342 def name @attachments ||= {} @attachments[name] ||= Attachment.new(name, self, self.class.[name]) end |
#destroy_attached_files ⇒ Object
360 361 362 363 364 365 366 |
# File 'lib/dm-paperclip.rb', line 360 def destroy_attached_files Paperclip.log("Deleting attachments.") do |name, | .send(:queue_existing_for_delete) .send(:flush_deletes) end end |
#each_attachment ⇒ Object
347 348 349 350 351 |
# File 'lib/dm-paperclip.rb', line 347 def self.class..each do |name, definition| yield(name, (name)) end end |