Commit 52543bde by Gaurish Sharma Committed by Tute Costa

Paperclip Broken Attachment finder

[closes #1655]
parent 2610cc32
...@@ -108,4 +108,20 @@ namespace :paperclip do ...@@ -108,4 +108,20 @@ namespace :paperclip do
end end
end end
end end
desc "find missing attachments. Useful to know which attachments are broken"
task :find_broken_attachments => :environment do
klass = Paperclip::Task.obtain_class
names = Paperclip::Task.obtain_attachments(klass)
names.each do |name|
Paperclip.each_instance_with_attachment(klass, name) do |instance|
attachment = instance.send(name)
if attachment.exists?
print "."
else
Paperclip::Task.log_error("#{instance.class}##{attachment.name}, #{instance.id}, #{attachment.url}")
end
end
end
end
end end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment