You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
315 B
16 lines
315 B
# encoding: utf-8
|
|
require 'carrierwave/processing/mini_magick'
|
|
|
|
class CoverUploader < CarrierWave::Uploader::Base
|
|
|
|
include CarrierWave::ImageOptimizer
|
|
include CarrierWave::MiniMagick
|
|
|
|
storage :file
|
|
process :optimize
|
|
|
|
def store_dir
|
|
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
|
|
end
|
|
|
|
end
|
|
|