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
320 321 322 323 |
# File 'lib/paperclip.rb', line 320 def name @_paperclip_attachments ||= {} @_paperclip_attachments[name] ||= Attachment.new(name, self, self.class.[name]) end |
#destroy_attached_files ⇒ Object
338 339 340 341 342 343 344 |
# File 'lib/paperclip.rb', line 338 def destroy_attached_files logger.info("[paperclip] Deleting attachments.") do |name, | .send(:queue_existing_for_delete) .send(:flush_deletes) end end |
#each_attachment ⇒ Object
325 326 327 328 329 |
# File 'lib/paperclip.rb', line 325 def self.class..each do |name, definition| yield(name, (name)) end end |
#save_attached_files ⇒ Object
331 332 333 334 335 336 |
# File 'lib/paperclip.rb', line 331 def save_attached_files logger.info("[paperclip] Saving attachments.") do |name, | .send(:save) end end |