Reputation: 31
I can't upload GIF image in rails. All uploaded images are converted to JPG. Please help me, thanks.
Upvotes: 3
Views: 1080
Reputation: 161
try white listing gif type
class MyUploader < CarrierWave::Uploader::Base
def extension_whitelist
%w(jpg jpeg gif png)
end
end
Upvotes: 3