Created
June 24, 2013 09:50
-
-
Save asonas/5848992 to your computer and use it in GitHub Desktop.
`{}`がややこしいから、率先してBの書き方をしようと思った。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A | |
gon.users = User.where(id: user_ids).map { |user| | |
{ | |
id: user.id. | |
html: render_to_string("users/profile" as: :user, object: user) | |
} | |
} | |
# B | |
gon.users = User.where(id: user_ids).map do |user| | |
{ | |
id: user.id. | |
html: render_to_string("users/profile" as: :user, object: user) | |
} | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment