Tung Pham
Tung Pham

Reputation: 31

How to upload animate GIF in rails with CarrierWave?

I can't upload GIF image in rails. All uploaded images are converted to JPG. Please help me, thanks.

Upvotes: 3

Views: 1080

Answers (1)

Prateek Darmwal
Prateek Darmwal

Reputation: 161

try white listing gif type

class MyUploader < CarrierWave::Uploader::Base
  def extension_whitelist
    %w(jpg jpeg gif png)
  end
end

Upvotes: 3

Related Questions