Skip to content

Instantly share code, notes, and snippets.

@marcusleemitchell
Created February 13, 2013 13:59
Show Gist options
  • Save marcusleemitchell/4944795 to your computer and use it in GitHub Desktop.
Save marcusleemitchell/4944795 to your computer and use it in GitHub Desktop.
Wanting to reprocess Host avatars...is this the best solution or is there another way?
User.find_in_batches(:conditions => "user_type IN ('host','ghost')") do |user_batch|
user_batch.each do |user|
user.delay.send(:generate_delayed_image_styles!)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment