Skip to content

Instantly share code, notes, and snippets.

@tjh
Created May 26, 2012 17:41
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 tjh/2794746 to your computer and use it in GitHub Desktop.
Save tjh/2794746 to your computer and use it in GitHub Desktop.
<% @customers.all.each_with_index do |i, customer| %>
<h1><%= "Customer #{i}: #{customer.name}" %></h1>
<% end %>
customers.collect { |c| c.address.city }.uniq
<% form_for @customer %>
<%= f.label :name %>
<%= f.input :name %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment