Uppr

Uploader for Rails using CarrierWave uploader and support for image, video and attachment.

Installation

gem 'uppr'
require 'uppr'

Usage

Mount uploader to your model. Uploader supports images, videos and files.

Example
mount_uploader :image, Uppr::Image
mount_uploader :video, Uppr::Video
mount_uploader :attachment, Uppr::Attachment

It supports background uploading. If you want to upload on background, you need to have attribute_tmp in your database table.

Example
store_in_background :image
store_in_background :video
store_in_background :attachment

Image versions

Video versions

Allowed attachments