Skip to content

Instantly share code, notes, and snippets.

@ilpoldo
Created February 22, 2010 12:14
Show Gist options
  • Save ilpoldo/311038 to your computer and use it in GitHub Desktop.
Save ilpoldo/311038 to your computer and use it in GitHub Desktop.
# Shorter render statement for partials
# From Rails 2.3 on
render :partial => "p", :locals => { :x => 1 }
# can be written as:
render "p", :x => 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment