Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code:

<% if design.avatar.file? %>
    <%= link_to image_tag design.avatar.url(:thumb), design %>
<% else %>
    <%= link_to image, design %>
<% end%>

And i get this error:

undefined method `symbolize_keys!' for #<Design:0x00000002dfa5f0>

But then, if I remove the design part from first link, leaving code like this:

<% if design.avatar.file? %>
    <%= link_to image_tag design.avatar.url(:thumb) %>
<% else %>
    <%= link_to image, design %>
<% end%>

It works! Obviously with an empty link in the first place, but renders the page.

The image variable is defined in application_helper.rb as follows:

def image
    image = image_tag("image.jpg", :alt => %(No image available), :class => "round")
end

I'm obviously missing something here...

share|improve this question

1 Answer

up vote 4 down vote accepted

you should at least put parentheses around your inner method call:

<%= link_to image_tag(design.avatar.url(:thumb)), design %>

because ruby interprets design as second argument to image_tag, and image_tag expects a hash there, which it tries to normalize (with symbolize_keys!)

share|improve this answer
I tried that before and did not work, but with your answer I've realized I left a whitespace after image_tag... Thanks! – mornaner Sep 27 '11 at 11:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.