Hi there,
I’m working on something in Rails (my first app, really) and
attempting to use the auto_link feature. Basically, one of the fields
in my database is a url. I have successfully gotten it to format in
the view with the auto_link helper, but when it comes time for me to
try and input the :target => ‘_blank’ part of things, it craps out on
me.
This is the code that works:
When I attempt to have it use the :target => ‘_blank’ stuff, is where
I’m getting lost…
If I change it to this: (or several other syntax variations)
I get this:
wrong number of arguments (2 for 1)
Extracted source (around line #13):
10: <% for link in @links %>
11:
12: <% for column in Link.content_columns %>
13:
‘_blank’) %>
14: <% end %>
15:
16:
I’ve looked here:
I’m pretty sure it’s probably something glaringly obvious that I’m
missing, but rather than bang my head incessantly on my keyboard, I
figured I’d save myself the qwerty imprints on my forehead and
ask.
Thanks,
Samantha