Archive for October, 2009

when I write views and templates sometimes it occurs that I want to use some code like
<% if c = @customer[:image] >;

<img src='...' />;

<
end %>

but obviously this code would look much more nice with short tags enabled, so I could use code like

if c = @customer[:image]

<img src='...' />

end
but [...]