I have this CarrierWave uploader
class PhotoUploader < CarrierWave::Uploader::Base
include CarrierWave::MiniMagick
permissions 0777
attr_accessor :resolution, :thumb_resolution
process :resize_to_fit => [800, 800]
process :store_geometry
def extension_white_list
%w(jpg jpeg gif png)
end
storage :file
def store_geometry
if @file
image = MiniMagick::Image.open(@file.file)
@resolution = image["dimensions"].join("x")
p "Storing geometry #{@resolution}"
end
end
def store_thumb_geometry
if @file
image = MiniMagick::Image.open(@file.file)
@thumb_resolution = image["dimensions"].join("x")
p "Storing thumb geometry #{@thumb_resolution}"
end
end
version :thumb do
process :resize_to_fit => [100, 100]
process :store_thumb_geometry
end
end
but when I use the uploader like below, thumb_resolution is nil although "Storing thumb geometry 100x90" is output on the screen.
uploader = PhotoUploader.new
uploader.store!(params[:photo])
uploader.resolution # => 800x500
uploader.thumb_resolution # => nil
Why is it nil and what to do about it? I'd guess the reason is because the uploader isn't mounted to a model, but I'm not using ActiveRecord or any other ORM.