Привет всем, C новым годом, проблема следующая, юзеры грузят аватарки с помощью CarrierWave
после очередного деплоя аватарки как ветром сдувает...
Действие происходит на VPS.
Вопрос, что сделать чтобы после деплоя аватарки не слетали...
class AvatarUploader < CarrierWave::Uploader::Base
# Include RMagick or MiniMagick support:
include CarrierWave::RMagick
# include CarrierWave::MiniMagick
# Choose what kind of storage to use for this uploader:
storage :file
# storage :fog
def root
Rails.root.join 'public/'
end
# Override the directory where uploaded files will be stored.
# This is a sensible default for uploaders that are meant to be mounted:
def store_dir
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
end