Skip to content

Instantly share code, notes, and snippets.

@cwoodcox
Created August 14, 2012 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cwoodcox/3352700 to your computer and use it in GitHub Desktop.
Save cwoodcox/3352700 to your computer and use it in GitHub Desktop.
# This:
render partial: 'posts/post_preview', collection: @posts, as: :post
# Is not the same as this:
render 'posts/post_preview', collection: @posts, as: :post
# Even though this:
render 'posts/post_preview', collection: @posts
# Behaves exactly as it should.
# Rails bug?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment