rubaidh / yet_another_form_builder
yet_another_form_builder
PublicForm builder that simplifies the process of building forms in rails
5 filesupdated Jun 18, 2026
files5Download
./libJun 15, 2026init.rbJun 15, 2026MIT-LICENSEJun 15, 2026RakefileJun 15, 2026READMEJun 18, 2026README
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