如何将此图像转换为链接?

Jus*_*zer 1 ruby ruby-on-rails image hyperlink ruby-on-rails-3

这是图像:

<%= image_tag comment.user.profile.photo.url(:tiny) %>
Run Code Online (Sandbox Code Playgroud)

这是链接路径:

comment.user.profile
Run Code Online (Sandbox Code Playgroud)

现在我该如何将这两者结合起来?

ctc*_*rry 8

<%= link_to image_tag(comment.user.profile.photo.url(:tiny)), comment.user.profile %>
Run Code Online (Sandbox Code Playgroud)