Joe MooreJoe Moore
Standup 05/24/2007
edit Posted by Joe Moore on Friday May 25, 2007 at 05:39PM

Interesting Things

  • We're looking for the best search plugins for Trac. Suggestions?
  • Rails: We often find ourselves adding and return in our Controllers to avoid the dreaded DoubleRenderError. It turns out that you can use unless performed? instead:
<code>
def double_rendering_action
  render :template => "wrangler/monkey" if wrangle_monkey?
  render :template => "wrangler/sleep" unless performed?
end
</code>

Comments

No comments have been posted yet.

Add a Comment (MarkDown available)