Guest User

Untitled

a guest
Jun 21st, 2012
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. Rails loop and .join method
  2. <%= @project.cities(&:name).join(", ") %>
  3.  
  4. #<City:0x103886748>
  5.  
  6. <%= @project.cities.map(&:name).join(", ") %>
  7.  
  8. <%= @project.cities(&:name).map.to_sentence %>
Advertisement
Add Comment
Please, Sign In to add comment