I have a User model and a Post model. A user's photo will be resized to a small thumbnail, and a post's photo will be resized to a large thumbnail.
version :smallThumb do
process :resize_to_fill => [100, 100]
end
version :largeThumb do
process :resize_to_fill => [200, 200]
end
How do I tell carrierwave which size to choose for an uploaded photo? Will it resize to both small and large for all uploads?