MonoForge

rubaidh / yet_another_form_builder

yet_another_form_builder

Public

Form builder that simplifies the process of building forms in rails

5 filesupdated Jun 18, 2026

README

YetAnotherFormBuilder

Yet another form builder to try and simplify the form building process by automagically adding appropriate labels to form inputs

Example

Creating a form something like this:

<% form_for(object) do |f| %> <%= f.text_field :name %> <% end %>

Will output something like this:

<label for="object_name">Name</label> <input id="object_name" name="object[name]" size="30" type="text" />

Copyright (c) 2007-2009 Rubaidh Ltd, released under the MIT license