This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
README
ErrorHandlingFormBuilder ======================== ErrorHandlingFormBuilder is a Rails plugin created from the "Keep Forms DRY" recipe in The Pragmatic Programmers' Advanced Rails Recipes (http://pragprog.com/titles/fr_arr/advanced-rails-recipes). Example ======= <% error_handling_form_for(@person) do |f| -%> <%= f.text_field :first_name %> <%= f.text_field :last_name, :label => 'Family Name' %> <%= f.date_select :birthday %> <%= f.select :sex, Person::SEX %> <%= f.text_area :bio %> <%= f.submit 'Update' %> <% end -%> Copyright (c) 2008 The Pragmatic Programmers Copyright (c) 2008 Sean Santry, released under the MIT license








