every 1.day, :at => '4:30 am' do
runner "MyPhotoModel.remove_after_30_days"
end
I haven't used CarrierWave yet, but many of the other file attachment gems delete the underlying file when the the corresponding object is destroyed. Try this in console --
Photo.first.destroy
Then look in your file folder to see if the matching file is actually gone.
Walter