tasafo/certifico

View on GitHub
app/uploaders/template_image_uploader.rb

Summary

Maintainability
A
20 mins
Test Coverage
C
75%
class TemplateImageUploader < ImageUploader
  WIDTH = 845
  HEIGHT = 597

  if CloudinaryReady.up?
    include Cloudinary::CarrierWave

    cloudinary_transformation transformation: [
      { width: WIDTH, height: HEIGHT, crop: :limit }
    ]
  else
    include CarrierWave::MiniMagick

    process resize_to_fit: [WIDTH, HEIGHT]
  end
end