I installed ImageMagick and I have this in my model:
has_attached_file :image, :style => { :small => “150x150>”}
then in show I have
<%= image_tag @analysis.image.url(:small) %>
But the name of the file is displaying instead of a resized photo.
Why is that?