I ran across this post while looking for a solution to the same
problem. In the end, this worked for me in the attachment model class:
# use attachment_fu protected methods to remake thumbs
def remake_thumbnails!
self.thumbnails.each {|thumb| thumb.destroy}
temp_file = create_temp_file
attachment_options[:thumbnails].each do |suffix, size|
self.create_or_update_thumbnail(temp_file, suffix, *size)
end
end
I use this in a rake task so I can rebuild all thumbnails when needed.
cheers,
-foz
On Nov 9, 5:26 pm, Russell Fine <
rails-mailing-l...@andreas-s.net>
wrote: