Class: Kublog::FileUploader

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

Instance Method Summary collapse

Instance Method Details

#default_urlObject

Provide a default URL as a default if there hasn’t been a file uploaded:



19
20
21
# File 'app/uploaders/kublog/file_uploader.rb', line 19

def default_url
  '/assets/kublog/missing_image.png' # + [version_name, "default.png"].compact.join('_')
end

#extension_white_listObject

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



42
43
44
# File 'app/uploaders/kublog/file_uploader.rb', line 42

def extension_white_list
  %w(jpg jpeg gif png)
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:



14
15
16
# File 'app/uploaders/kublog/file_uploader.rb', line 14

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