This question was asked, but there was no answer ... I have the same problem.
I use a carrier to download files, everything works fine until I wanted to create a thumbs up.
images are saved in tmp direct, but saved in the same size ...
The file of my avatar_uploader.rb is as follows:
class AvatarUploader < CarrierWave::Uploader::Base include CarrierWave::RMagick storage :file def store_dir "uploads/
My view has the following:
<% for image in @posts %> <%= image_tag image.avatar_url(:thumb) if image.avatar? %> <%= image.title %> <% end %>
When I do not turn on (: the thumb), I see full images ... but when I turn on (: the thumb), I get the following error:
Version thumb doesn't exist!
below is my model setup
class Post < ActiveRecord::Base attr_accessible :comments, :frame, :title, :twitter, :avatar belongs_to :user mount_uploader :avatar, AvatarUploader end
I see that the tmp directory was created, but the images did not change ... I have imagemagick and rmagick ...
thanks
source share