Reputation: 3154
I'm moving to Rails4. In my uploader, I have the following:
version :thumb do
process :resize_to_fill => [200, 200]
end
Which now causes the following error: "Errno::ENOENT (No such file or directory - identify)"
The error goes away when I comment out the code, but of course now I don't have a thumbnail. Any ideas as to what is causing this?
Upvotes: 9
Views: 5125
Reputation: 4558
If you update imagemagick and have the "Errno::ENOENT (No such file or directory - identify)" issue. Try to update the "mini_magick" and "rmagick" gem.
Upvotes: 0