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
- #prepare_for_destroy ⇒ Object
- #save_attached_files ⇒ Object
Instance Method Details
#attachment_for(name) ⇒ Object
443 444 445 446 |
# File 'lib/paperclip.rb', line 443 def name ||= {} [name] ||= Attachment.new(name, self, self.class.[name]) end |
#destroy_attached_files ⇒ Object
461 462 463 464 465 466 |
# File 'lib/paperclip.rb', line 461 def destroy_attached_files Paperclip.log("Deleting attachments.") do |name, | .send(:flush_deletes) end end |
#each_attachment ⇒ Object
448 449 450 451 452 |
# File 'lib/paperclip.rb', line 448 def self.class..each do |name, definition| yield(name, (name)) end end |
#prepare_for_destroy ⇒ Object
468 469 470 471 472 473 |
# File 'lib/paperclip.rb', line 468 def prepare_for_destroy Paperclip.log("Scheduling attachments for deletion.") do |name, | .send(:queue_existing_for_delete) end end |
#save_attached_files ⇒ Object
454 455 456 457 458 459 |
# File 'lib/paperclip.rb', line 454 def save_attached_files Paperclip.log("Saving attachments.") do |name, | .send(:save) end end |