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 (
| name | age | message | |
|---|---|---|---|
| |
MIT-LICENSE | ||
| |
README | ||
| |
Rakefile | ||
| |
init.rb | ||
| |
install.rb | ||
| |
lib/ | ||
| |
tasks/ | ||
| |
test/ | ||
| |
uninstall.rb |
README
== class_inputs This is a super-simple view extension for Rails. It just adds helpful class names to all Rails-generated +input+ tags to make it easier to style them. So, by default Rails gives you: text_field_tag(:foo, :class => 'something') # => <input class="something" id="foo" name="foo" type="text" /> f.check_box(:bar) # => <input id="record_bar" name="record[bar]" type="checkbox" value="1" /> With classy_inputs installed, you get: text_field_tag(:foo, :class => 'something') # => <input class="something text" id="foo" name="foo" type="text" /> f.check_box(:bar) # => <input class="checkbox" id="record_bar" name="record[bar]" type="checkbox" value="1" /> Copyright (c) 2008 James Coglan, released under the MIT license








