Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 21st, 2012  |  syntax: None  |  size: 0.20 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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 %>