I'm using carrierwave 0.7.0. I have a model with avatar and a thumb version which I am cropping (something like http://railscasts.com/episodes/182-cropping-images).
class Organization
#...
mount_uploader :avatar, :AvatarUploader
end
It runs fine on local machines. However, when I push to my staging server, I am having problems.
I am able to create versions, but when I run recreate_versions! with different cropping information, it won't update the versions on fog servers. I can see from my rails logger that the cropping happened as expected, and I've also logged the newly cropped file and it looks right by looking at its content length. However, it is not persisted on my aws server. Note that I am able to do the cropping the first time. Any ideas guys?
Thanks in advance!