Skip to content

Instantly share code, notes, and snippets.

@cwise
Created March 24, 2015 02:13
Show Gist options
  • Save cwise/57ea0043f39ef4f3c7fe to your computer and use it in GitHub Desktop.
Save cwise/57ea0043f39ef4f3c7fe to your computer and use it in GitHub Desktop.
Delete broken images
images = Spree::Image.all.reject do |image|
begin
open image.attachment.url
putc '.'
true
rescue
puts image.attachment.url
false
end
end
images.each{ |i| i.destroy }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment