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
366 367 368 369 |
# File 'lib/paperclip.rb', line 366 def name ||= {} [name] ||= Attachment.new(name, self, self.class.[name]) end |
#destroy_attached_files ⇒ Object
384 385 386 387 388 389 390 |
# File 'lib/paperclip.rb', line 384 def destroy_attached_files Paperclip.log("Deleting attachments.") do |name, | .send(:queue_existing_for_delete) .send(:flush_deletes) end end |
#each_attachment ⇒ Object
371 372 373 374 375 |
# File 'lib/paperclip.rb', line 371 def self.class..each do |name, definition| yield(name, (name)) end end |
#save_attached_files ⇒ Object
377 378 379 380 381 382 |
# File 'lib/paperclip.rb', line 377 def save_attached_files Paperclip.log("Saving attachments.") do |name, | .send(:save) end end |