Class: ImageAttachmentUploader
- Inherits:
-
CarrierWave::Uploader::Base
- Object
- CarrierWave::Uploader::Base
- ImageAttachmentUploader
- Includes:
- CarrierWave::MimeTypes
- Defined in:
- app/uploaders/image_attachment_uploader.rb
Instance Method Summary collapse
-
#extension_white_list ⇒ Object
Add a white list of extensions which are allowed to be uploaded.
-
#store_dir ⇒ Object
Override the directory where uploaded files will be stored.
- #store_geometry ⇒ Object
Instance Method Details
#extension_white_list ⇒ Object
Add a white list of extensions which are allowed to be uploaded. For images you might use something like this:
43 44 45 |
# File 'app/uploaders/image_attachment_uploader.rb', line 43 def extension_white_list %w(jpg jpeg gif png) end |
#store_dir ⇒ Object
Override the directory where uploaded files will be stored. This is a sensible default for uploaders that are meant to be mounted:
13 14 15 |
# File 'app/uploaders/image_attachment_uploader.rb', line 13 def store_dir eval '"' + Cmsimple.configuration.asset_path + '"' end |
#store_geometry ⇒ Object
36 37 38 39 40 |
# File 'app/uploaders/image_attachment_uploader.rb', line 36 def store_geometry if @file model.width, model.height = Dimensions.dimensions(@file.file) end end |