Show thumbnails in view with acts_as_attachment

Sorry, my brain is fried after getting this plugin working with
polymorphic associations. I have an Image, and Image.thumbnails returns
an array of thumbnails with names like “medium”, “small”, etc. So how
do I display this in a view? Is there a method for doing this? There
is a .thumbnail method but it has no documentation. Am I forced to
parse the array manually everytime? Thanks.

I don’t know if you have seen this or not but it helped me out, it is
a tutorial on thumbnailing using acts_as_attachment
http://weblog.techno-weenie.net/articles/acts_as_attachment/thumbnailing

On Mar 20, 11:59 am, Taylor S. [email protected]

Thanks. I was able to finally get it with this:

<%= image_tag @image.public_filename(‘medium’) %>