Class: PictureUploader

Inherits:
CarrierWave::Uploader::Base
  • Object
show all
Includes:
CarrierWave::RMagick
Defined in:
app/uploaders/picture_uploader.rb

Overview

CarrierWave uploader for Picture model.

Instance Method Summary collapse

Instance Method Details

#extension_white_listObject

Add a white list of extensions which are allowed to be uploaded. For images you might use something like this:



28
29
30
# File 'app/uploaders/picture_uploader.rb', line 28

def extension_white_list
  %w(jpg jpeg gif png)
end

#rootObject



32
33
34
# File 'app/uploaders/picture_uploader.rb', line 32

def root
  Rails.root.join 'public/'
end

#store_dirObject

Override the directory where uploaded files will be stored. This is a sensible default for uploaders that are meant to be mounted:



17
18
19
# File 'app/uploaders/picture_uploader.rb', line 17

def store_dir
  "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
end