最近アップロードした画像へのリンクを作成しようとしています
<%= link_to (image_tag (post.image_url(:thumb))), post.image.url(:original), :class => 'postimage' %>
まったく機能していないのに...
<% @post.image do |image| %>
<%= link_to (image_tag (post.image_url(:thumb))), post.image.url(:original), :class => 'postimage' %>
<% end %>
楽しい部分は
<%= @post.image %>
動作します。ただし、/uploads/post/image/3/eKoh3.jpg のみが表示されます
完全なコードはこちらhttps://gist.github.com/4332533