What's New in Edge Rails #17

Week of April 8 - April 14, 2012

Lots of tidying up in the Rails source this week. It’s amazing how much even a mature codebase can be improved when lots of people are nibbling away at it.


<%= form_for @person do |person_form| %>
  ...
  <%= person_form.fields_for :projects do |project_fields| %>
    Project #<%= project_fields.index %>
    ...
  <% end %>
  ...
<% end %>