tmayad-formtastic 0.9.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.textile +517 -0
  3. data/Rakefile +101 -0
  4. data/generators/form/USAGE +16 -0
  5. data/generators/form/form_generator.rb +120 -0
  6. data/generators/form/templates/view__form.html.erb +5 -0
  7. data/generators/form/templates/view__form.html.haml +4 -0
  8. data/generators/formtastic/formtastic_generator.rb +24 -0
  9. data/generators/formtastic/templates/formtastic.css +138 -0
  10. data/generators/formtastic/templates/formtastic.rb +54 -0
  11. data/generators/formtastic/templates/formtastic_changes.css +10 -0
  12. data/generators/formtastic_stylesheets/formtastic_stylesheets_generator.rb +16 -0
  13. data/lib/formtastic.rb +1643 -0
  14. data/lib/formtastic/i18n.rb +32 -0
  15. data/lib/locale/en.yml +8 -0
  16. data/rails/init.rb +3 -0
  17. data/spec/buttons_spec.rb +149 -0
  18. data/spec/commit_button_spec.rb +344 -0
  19. data/spec/custom_builder_spec.rb +62 -0
  20. data/spec/custom_macros.rb +561 -0
  21. data/spec/defaults_spec.rb +20 -0
  22. data/spec/error_proc_spec.rb +27 -0
  23. data/spec/errors_spec.rb +85 -0
  24. data/spec/form_helper_spec.rb +120 -0
  25. data/spec/i18n_spec.rb +131 -0
  26. data/spec/include_blank_spec.rb +70 -0
  27. data/spec/input_spec.rb +608 -0
  28. data/spec/inputs/boolean_input_spec.rb +93 -0
  29. data/spec/inputs/check_boxes_input_spec.rb +162 -0
  30. data/spec/inputs/country_input_spec.rb +80 -0
  31. data/spec/inputs/date_input_spec.rb +45 -0
  32. data/spec/inputs/datetime_input_spec.rb +155 -0
  33. data/spec/inputs/file_input_spec.rb +33 -0
  34. data/spec/inputs/hidden_input_spec.rb +52 -0
  35. data/spec/inputs/numeric_input_spec.rb +44 -0
  36. data/spec/inputs/password_input_spec.rb +46 -0
  37. data/spec/inputs/radio_input_spec.rb +149 -0
  38. data/spec/inputs/select_input_spec.rb +459 -0
  39. data/spec/inputs/string_input_spec.rb +47 -0
  40. data/spec/inputs/text_input_spec.rb +33 -0
  41. data/spec/inputs/time_input_spec.rb +44 -0
  42. data/spec/inputs/time_zone_input_spec.rb +102 -0
  43. data/spec/inputs_spec.rb +395 -0
  44. data/spec/label_spec.rb +48 -0
  45. data/spec/semantic_fields_for_spec.rb +44 -0
  46. data/spec/spec.opts +2 -0
  47. data/spec/spec_helper.rb +212 -0
  48. metadata +169 -0
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2008 Justin French
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.textile ADDED
@@ -0,0 +1,517 @@
1
+ h1. Formtastic
2
+
3
+ Formtastic is a Rails FormBuilder DSL (with some other goodies) to make it far easier to create beautiful, semantically rich, syntactically awesome, readily stylable and wonderfully accessible HTML forms in your Rails applications.
4
+
5
+ h2. The Story
6
+
7
+ One day, I finally had enough, so I opened up my text editor, and wrote a DSL for how I'd like to author forms:
8
+
9
+ <pre>
10
+ <% semantic_form_for @article do |form| %>
11
+
12
+ <% form.inputs :name => "Basic" do %>
13
+ <%= form.input :title %>
14
+ <%= form.input :body %>
15
+ <%= form.input :section %>
16
+ <%= form.input :publication_state, :as => :radio %>
17
+ <%= form.input :category %>
18
+ <%= form.input :allow_comments, :label => "Allow commenting on this article" %>
19
+ <% end %>
20
+
21
+ <% form.inputs :name => "Advanced" do %>
22
+ <%= form.input :keywords, :required => false, :hint => "Example: ruby, rails, forms" %>
23
+ <%= form.input :extract, :required => false %>
24
+ <%= form.input :description, :required => false %>
25
+ <%= form.input :url_title, :required => false %>
26
+ <% end %>
27
+
28
+ <% form.inputs :name => "Author", :for => :author do |author_form| %>
29
+ <%= author_form.input :first_name %>
30
+ <%= author_form.input :last_name %>
31
+ <% end %>
32
+
33
+ <% form.buttons do %>
34
+ <%= form.commit_button %>
35
+ <% end %>
36
+
37
+ <% end %>
38
+ </pre>
39
+
40
+ I also wrote the accompanying HTML output I expected, favoring something very similar to the fieldsets, lists and other semantic elements Aaron Gustafson presented in "Learning to Love Forms":http://www.slideshare.net/AaronGustafson/learning-to-love-forms-web-directions-south-07, hacking together enough Ruby to prove it could be done.
41
+
42
+
43
+ h2. It's better than _SomeOtherFormBuilder_ because...
44
+
45
+ * it can handle @belongs_to@ associations (like Post belongs_to :author), rendering a select or set of radio inputs with choices from the parent model.
46
+ * it can handle @has_many@ and @has_and_belongs_to_many@ associations (like: Post has_many :tags), rendering a multi-select with choices from the child models.
47
+ * it's Rails 2.3-ready (including nested forms).
48
+ * it has internationalization (I18n)!
49
+ * it's _really_ quick to get started with a basic form in place (4 lines), then go back to add in more detail if you need it.
50
+ * there's heaps of elements, id and class attributes for you to hook in your CSS and JS.
51
+ * it handles real world stuff like inline hints, inline error messages & help text.
52
+ * it doesn't hijack or change any of the standard Rails form inputs, so you can still use them as expected (even mix and match).
53
+ * it's got absolutely awesome spec coverage.
54
+ * there's a bunch of people using and working on it (it's not just one developer building half a solution).
55
+
56
+
57
+ h2. Why?
58
+
59
+ * web apps = lots of forms.
60
+ * forms are so friggin' boring to code.
61
+ * semantically rich & accessible forms really are possible.
62
+ * the "V" is way behind the "M" and "C" in Rails' MVC – it's the ugly sibling.
63
+ * best practices and common patterns have to start somewhere.
64
+ * i need a challenge.
65
+
66
+
67
+ h2. Opinions
68
+
69
+ * it should be easier to do things the right way than the wrong way.
70
+ * sometimes _more mark-up_ is better.
71
+ * elements and attribute hooks are _gold_ for stylesheet authors.
72
+ * make the common things we do easy, yet still ensure uncommon things are still possible.
73
+
74
+
75
+ h2. Documentation
76
+
77
+ RDoc documentation _should_ be automatically generated after each commit and made available on the "rdoc.info website":http://rdoc.info/projects/justinfrench/formtastic.
78
+
79
+
80
+ h2. Installation
81
+
82
+ The gem is hosted on gemcutter, so *if you haven't already*, add it as a gem source:
83
+
84
+ <pre>
85
+ sudo gem sources -a http://gemcutter.org/
86
+ </pre>
87
+
88
+ Then install the Formtastic gem:
89
+
90
+ <pre>
91
+ sudo gem install formtastic
92
+ </pre>
93
+
94
+ Optionally, run @./script/generate formtastic@ to copy the following files into your app:
95
+
96
+ * @config/initializers/formtastic.rb@ - a commented out Formtastic config initializer
97
+ * @public/stylesheets/formtastic.css@
98
+ * @public/stylesheets/formtastic_changes.css@
99
+
100
+ A proof-of-concept stylesheet is provided which you can include in your layout. Customization is best achieved by overriding these styles in an additional stylesheet so that the Formtastic styles can be updated without clobbering your changes. If you want to use these stylesheets, add both to your layout:
101
+
102
+ <pre>
103
+ <%= stylesheet_link_tag "formtastic" %>
104
+ <%= stylesheet_link_tag "formtastic_changes" %>
105
+ </pre>
106
+
107
+
108
+ h2. Usage
109
+
110
+ Forms are really boring to code... you want to get onto the good stuff as fast as possible.
111
+
112
+ This renders a set of inputs (one for _most_ columns in the database table, and one for each ActiveRecord @belongs_to@-association), followed by a submit button:
113
+
114
+ <pre>
115
+ <% semantic_form_for @user do |form| %>
116
+ <%= form.inputs %>
117
+ <%= form.buttons %>
118
+ <% end %>
119
+ </pre>
120
+
121
+ If you want to specify the order of the fields, skip some of the fields or even add in fields that Formtastic couldn't detect, you can pass in a list of field names to @inputs@ and list of button names to @buttons@:
122
+
123
+ <pre>
124
+ <% semantic_form_for @user do |form| %>
125
+ <%= form.inputs :title, :body, :section, :categories, :created_at %>
126
+ <%= form.buttons :commit %>
127
+ <% end %>
128
+ </pre>
129
+
130
+ If you want control over the input type Formtastic uses for each field, you can expand the @inputs@ and @buttons@ blocks. This specifies the @:section@ input should be a set of radio buttons (rather than the default select box), and that the @:created_at@ field should be a string (rather than the default datetime selects):
131
+
132
+ <pre>
133
+ <% semantic_form_for @post do |form| %>
134
+ <% form.inputs do %>
135
+ <%= form.input :title %>
136
+ <%= form.input :body %>
137
+ <%= form.input :section, :as => :radio %>
138
+ <%= form.input :categories %>
139
+ <%= form.input :created_at, :as => :string %>
140
+ <% end %>
141
+ <% form.buttons do %>
142
+ <%= form.commit_button %>
143
+ <% end %>
144
+ <% end %>
145
+ </pre>
146
+
147
+ If you want to customize the label text, or render some hint text below the field, specify which fields are required/optional, or break the form into two fieldsets, the DSL is pretty comprehensive:
148
+
149
+ <pre>
150
+ <% semantic_form_for @post do |form| %>
151
+ <% form.inputs "Basic", :id => "basic" do %>
152
+ <%= form.input :title %>
153
+ <%= form.input :body %>
154
+ <% end %>
155
+ <% form.inputs :name => "Advanced Options", :id => "advanced" do %>
156
+ <%= form.input :slug, :label => "URL Title", :hint => "Created automatically if left blank", :required => false %>
157
+ <%= form.input :section, :as => :radio %>
158
+ <%= form.input :user, :label => "Author", :label_method => :full_name, %>
159
+ <%= form.input :categories, :required => false %>
160
+ <%= form.input :created_at, :as => :string, :label => "Publication Date", :required => false %>
161
+ <% end %>
162
+ <% form.buttons do %>
163
+ <%= form.commit_button %>
164
+ <% end %>
165
+ <% end %>
166
+ </pre>
167
+
168
+ Nested forms (Rails 2.3) are also supported. You can do it in the Rails way:
169
+
170
+ <pre>
171
+ <% semantic_form_for @post do |form| %>
172
+ <%= form.inputs :title, :body, :created_at %>
173
+ <% form.semantic_fields_for :author do |author| %>
174
+ <%= author.inputs :first_name, :last_name, :name => "Author" %>
175
+ <% end %>
176
+ <%= form.buttons %>
177
+ <% end %>
178
+ </pre>
179
+
180
+ Or the Formtastic way with the @:for@ option:
181
+
182
+ <pre>
183
+ <% semantic_form_for @post do |form| %>
184
+ <%= form.inputs :title, :body, :created_at %>
185
+ <%= form.inputs :first_name, :last_name, :for => :author, :name => "Author" %>
186
+ <%= form.buttons %>
187
+ <% end %>
188
+ </pre>
189
+
190
+ When working in has many association, you can even supply @"%i"@ in your fieldset name that it will be properly interpolated with the child index. For example:
191
+
192
+ <pre>
193
+ <% semantic_form_for @post do |form| %>
194
+ <%= form.inputs %>
195
+ <%= form.inputs :name => 'Category #%i', :for => :categories %>
196
+ <%= form.buttons %>
197
+ <% end %>
198
+ </pre>
199
+
200
+
201
+ Customize HTML attributes for any input using the @:input_html@ option. Typically his is used to disable the input, change the size of a text field, change the rows in a textarea, or even to add a special class to an input to attach special behavior like "autogrow":http://plugins.jquery.com/project/autogrow textareas:
202
+
203
+ <pre>
204
+ <% semantic_form_for @post do |form| %>
205
+ <%= form.input :title, :input_html => { :size => 60 } %>
206
+ <%= form.input :body, :input_html => { :class => 'autogrow' } %>
207
+ <%= form.input :created_at, :input_html => { :disabled => true } %>
208
+ <%= form.buttons %>
209
+ <% end %>
210
+ </pre>
211
+
212
+ The same can be done for buttons with the @:button_html@ option:
213
+
214
+ <pre>
215
+ <% semantic_form_for @post do |form| %>
216
+ ...
217
+ <% form.buttons do %>
218
+ <%= form.commit_button :button_html => { :class => "primary" } %>
219
+ <% end %>
220
+ <% end %>
221
+ </pre>
222
+
223
+ Customize the HTML attributes for the @<li>@ wrapper around every input with the @:wrapper_html@ option hash. There's one special key in the hash (@:class@), which will actually _append_ your string of classes to the existing classes provided by Formtastic (like @"required string error"@)
224
+
225
+ <pre>
226
+ <% semantic_form_for @post do |form| %>
227
+ <%= form.input :title, :wrapper_html => { :class => "important" } %>
228
+ <%= form.input :body %>
229
+ <%= form.input :description, :wrapper_html => { :style => "display:none;" } %>
230
+ ...
231
+ <% end %>
232
+ </pre>
233
+
234
+
235
+ h2. The Available Inputs
236
+
237
+ The Formtastic input types:
238
+
239
+ * @:select@ - a select menu. Default for ActiveRecord associations: @belongs_to@, @has_many@, and @has_and_belongs_to_many@.
240
+ * @:check_boxes@ - a set of check_box inputs. Alternative to @:select@ for ActiveRecord-associations: @has_many@, and @has_and_belongs_to_many@.
241
+ * @:radio@ - a set of radio inputs. Alternative to @:select@ for ActiveRecord-associations: @belongs_to@.
242
+ * @:time_zone@ - a select input. Default for column types: @:string@ with name matching @"time_zone"@.
243
+ * @:password@ - a password input. Default for column types: @:string@ with name matching @"password"@.
244
+ * @:text@ - a textarea. Default for column types: @:text@.
245
+ * @:date@ - a date select. Default for column types: @:date@.
246
+ * @:datetime@ - a date and time select. Default for column types: @:datetime@ and @:timestamp@.
247
+ * @:time@ - a time select. Default for column types: @:time@.
248
+ * @:boolean@ - a checkbox. Default for column types: @:boolean@.
249
+ * @:string@ - a text field. Default for column types: @:string@.
250
+ * @:numeric@ - a text field (just like string). Default for column types: @:integer@, @:float@, and @:decimal@.
251
+ * @:file@ - a file field. Default for file-attachment attributes matching: "paperclip":http://github.com/thoughtbot/paperclip or "attachment_fu":http://github.com/technoweenie/attachment_fu.
252
+ * @:country@ - a select menu of country names. Default for column types: :string with name @"country"@ - requires a *country_select* plugin to be installed.
253
+ * @:hidden@ - a hidden field. Creates a hidden field (added for compatibility).
254
+
255
+ The documentation is pretty good for each of these (what it does, what the output is, what the options are, etc.) so go check it out.
256
+
257
+ h2. Internationalization (I18n)
258
+
259
+ h3. Basic Localization
260
+
261
+ Formtastic got some neat I18n-features. ActiveRecord object names and attributes are, by default, taken from calling @@object.human_name@ and @@object.human_attribute_name(attr)@ respectively. There are a few words specific to Formtastic that can be translated. See @lib/locale/en.yml@ for more information.
262
+
263
+ Basic localization (labels only, with ActiveRecord):
264
+
265
+ <pre>
266
+ <% semantic_form_for @post do |form| %>
267
+ <%= form.input :title %> # => :label => I18n.t('activerecord.attributes.user.title') or 'Title'
268
+ <%= form.input :body %> # => :label => I18n.t('activerecord.attributes.user.body') or 'Body'
269
+ <%= form.input :section %> # => :label => I18n.t('activerecord.attributes.user.section') or 'Section'
270
+ <% end %>
271
+ </pre>
272
+
273
+ *Note:* This is perfectly fine if you just want your labels/attributes and/or models to be translated using *ActiveRecord I18n attribute translations*, and you don't use input hints and legends. But what if you do? And what if you don't want same labels in all forms?
274
+
275
+ h3. Enhanced Localization (Formtastic I18n API)
276
+
277
+ Formtastic supports localized *labels*, *hints*, *legends*, *actions* using the I18n API for more advanced usage. Your forms can now be DRYer and more flexible than ever, and still fully localized. This is how:
278
+
279
+ *1. Enable I18n lookups by default (@config/initializers/formtastic.rb@):*
280
+
281
+ <pre>
282
+ Formtastic::SemanticFormBuilder.i18n_lookups_by_default = true
283
+ </pre>
284
+
285
+ *2. Add some cool label-translations/variants (@config/locale/en.yml@):*
286
+
287
+ <pre>
288
+ en:
289
+ formtastic:
290
+ titles:
291
+ post_details: "Post details"
292
+ labels:
293
+ post:
294
+ title: "Choose a title..."
295
+ body: "Write something..."
296
+ edit:
297
+ title: "Edit title"
298
+ hints:
299
+ post:
300
+ title: "Choose a good title for you post."
301
+ body: "Write something inspiring here."
302
+ actions:
303
+ create: "Create my {{model}}"
304
+ update: "Save changes"
305
+ dummie: "Launch!"
306
+ </pre>
307
+
308
+ *Note:* We are using English here still, but you get the point.
309
+
310
+ *3. ...and now you'll get:*
311
+
312
+ <pre>
313
+ <% semantic_form_for Post.new do |form| %>
314
+ <% form.inputs do %>
315
+ <%= form.input :title %> # => :label => "Choose a title...", :hint => "Choose a good title for you post."
316
+ <%= form.input :body %> # => :label => "Write something...", :hint => "Write something inspiring here."
317
+ <%= form.input :section %> # => :label => I18n.t('activerecord.attributes.user.section') or 'Section'
318
+ <% end %>
319
+ <% form.buttons do %>
320
+ <%= form.commit_button %> # => "Create my {{model}}"
321
+ <% end %>
322
+ <% end %>
323
+ </pre>
324
+
325
+ *4. Localized titles (a.k.a. legends):*
326
+
327
+ _Note: Slightly different because Formtastic can't guess how you group fields in a form. Legend text can be set with first (as in the sample below) specified value, or :name/:title options - depending on what flavor is preferred._
328
+
329
+ <pre>
330
+ <% semantic_form_for @post do |form| %>
331
+ <% form.inputs :post_details do %> # => :title => "Post details"
332
+ # ...
333
+ <% end %>
334
+ # ...
335
+ <% end %>
336
+ </pre>
337
+
338
+ *5. Override I18n settings:*
339
+
340
+ <pre>
341
+ <% semantic_form_for @post do |form| %>
342
+ <% form.inputs do %>
343
+ <%= form.input :title %> # => :label => "Choose a title...", :hint => "Choose a good title for you post."
344
+ <%= form.input :body, :hint => false %> # => :label => "Write something..."
345
+ <%= form.input :section, :label => 'Some section' %> # => :label => 'Some section'
346
+ <% end %>
347
+ <% form.buttons do %>
348
+ <%= form.commit_button :dummie %> # => "Launch!"
349
+ <% end %>
350
+ <% end %>
351
+ </pre>
352
+
353
+ If I18n-lookups is disabled, i.e.:
354
+
355
+ <pre>
356
+ Formtastic::SemanticFormBuilder.i18n_lookups_by_default = false
357
+ </pre>
358
+
359
+ ...then you can enable I18n within the forms instead:
360
+
361
+ <pre>
362
+ <% semantic_form_for @post do |form| %>
363
+ <% form.inputs do %>
364
+ <%= form.input :title, :label => true %> # => :label => "Choose a title..."
365
+ <%= form.input :body, :label => true %> # => :label => "Write something..."
366
+ <%= form.input :section, :label => true %> # => :label => I18n.t('activerecord.attributes.user.section') or 'Section'
367
+ <% end %>
368
+ <% form.buttons do %>
369
+ <%= form.commit_button true %> # => "Save changes" (if we are in edit that is...)
370
+ <% end %>
371
+ <% end %>
372
+ </pre>
373
+
374
+ *6. Advanced I18n lookups*
375
+
376
+ For more flexible forms; Formtastic find translations using a bottom-up approach taking the following variables in account:
377
+
378
+ * @MODEL@, e.g. "post"
379
+ * @ACTION@, e.g. "edit"
380
+ * @KEY/ATTRIBUTE@, e.g. "title", :my_custom_key, ...
381
+
382
+ ...in the following order:
383
+
384
+ 1. @formtastic.{titles,labels,hints,actions}.MODEL.ACTION.ATTRIBUTE@ - by model and action
385
+ 2. @formtastic.{titles,labels,hints,actions}.MODEL.ATTRIBUTE@ - by model
386
+ 3. @formtastic.{titles,labels,hints,actions}.ATTRIBUTE@ - global default
387
+
388
+ ...which means that you can define translations like this:
389
+
390
+ <pre>
391
+ en:
392
+ formtastic:
393
+ labels:
394
+ title: "Title" # Default global value
395
+ article:
396
+ body: "Article content"
397
+ post:
398
+ new:
399
+ title: "Choose a title..."
400
+ body: "Write something..."
401
+ edit:
402
+ title: "Edit title"
403
+ body: "Edit body"
404
+ </pre>
405
+
406
+ Values for @labels@/@hints@/@actions@ are can take values: @String@ (explicit value), @Symbol@ (i18n-lookup-key relative to the current "type", e.g. actions:), @true@ (force I18n lookup), @false@ (force no I18n lookup). Titles (legends) can only take: @String@ and @Symbol@ - true/false have no meaning.
407
+
408
+
409
+ h2. ValidationReflection plugin
410
+
411
+ If you have the "ValidationReflection":http://github.com/redinger/validation_reflection plugin installed, you won't have to specify the @:required@ option (it checks the validations on the model instead).
412
+
413
+
414
+ h2. Configuration
415
+
416
+ Run @./script/generate formtastic@ to copy a commented out config file into @config/initializers/formtastic.rb@. You can "view the configuration file on GitHub":http://github.com/justinfrench/formtastic/blob/master/generators/formtastic/templates/formtastic.rb
417
+
418
+
419
+ h2. Form Generator
420
+
421
+ There's a Formtastic form code generator to make your transition to Formtastic easier. All you have to do is to *specify an existing model name*, and optionally specify view template framework (ERB/HAML), and you are good to go. *Note:* This won't overwrite any of you stuff. This is how you use it:
422
+
423
+ *Alt. 1: Generate in terminal:*
424
+
425
+ <pre>
426
+ $ ./script/generate form Post
427
+ # ---------------------------------------------------------
428
+ # GENERATED FORMTASTIC CODE
429
+ # ---------------------------------------------------------
430
+
431
+ <% form.inputs do %>
432
+ <%= form.input :title, :label => 'Title' %>
433
+ <%= form.input :body, :label => 'Body' %>
434
+ <%= form.input :published, :label => 'Published' %>
435
+ <% end %>
436
+
437
+ # ---------------------------------------------------------
438
+ Copied to clipboard - just paste it!
439
+ </pre>
440
+
441
+ *Alt. 2: Generate partial:*
442
+
443
+ <pre>
444
+ $ ./script/generate form Post --partial
445
+ exists app/views/posts
446
+ create app/views/posts/_form.html.erb
447
+ </pre>
448
+
449
+ To generate *HAML* markup, just add the @--haml@ as argument:
450
+
451
+ <pre>
452
+ $ ./script/generate form Post --haml
453
+ exists app/views/admin/posts
454
+ create app/views/admin/posts/_form.html.haml
455
+ </pre>
456
+
457
+ To specify the controller in a namespace (eg admin/posts instead of posts), use the --controller argument:
458
+
459
+ <pre>
460
+ $ ./script/generate form Post --partial --controller admin/posts
461
+ exists app/views/admin/posts
462
+ create app/views/admin/posts/_form.html.erb
463
+ </pre>
464
+
465
+
466
+ h2. Custom Inputs
467
+
468
+ If you want to add your own input types to encapsulate your own logic or interface patterns, you can do so by subclassing SemanticFormBuilder and configuring Formtastic to use your custom builder class.
469
+
470
+ @Formtastic::SemanticFormHelper.builder = MyCustomBuilder@
471
+
472
+
473
+
474
+
475
+ h2. Status
476
+
477
+ Formtastic has been in active development for about a year. We've just recently jumped to an 0.9 version number, signaling that we consider this a 1.0 release candidate, and that the API won't change significantly for the 1.x series.
478
+
479
+
480
+ h2. Dependencies
481
+
482
+ There are none, but...
483
+
484
+ * if you have the "ValidationReflection":http://github.com/redinger/validation_reflection plugin is installed, you won't have to specify the @:required@ option (it checks the validations on the model instead).
485
+ * if you want to use the @:country@ input, you'll need to install the "iso-3166-country-select plugin":http://github.com/rails/iso-3166-country-select (or any other country_select plugin with the same API).
486
+ * "rspec":http://github.com/dchelimsky/rspec/, "rspec_hpricot_matchers":http://rubyforge.org/projects/rspec-hpricot/ and "rcov":http://github.com/relevance/rcov gems (plus any of their own dependencies) are required for the test suite.
487
+
488
+
489
+ h2. Compatibility
490
+
491
+ I'm only testing Formtastic with the latest Rails 2.4.x stable release, and it should be fine under Rails 2.3.x as well (including nested forms). Patches are welcome to allow backwards compatibility, but I don't have the energy!
492
+
493
+ h2. Got TextMate?
494
+
495
+ Well...there's a TextMate-bundle in town, dedicated to make usage of Formtastic in the "TextMate":http://macromates.com/ editor even more of a breeze:
496
+
497
+ "Formtastic.tmbundle":http://github.com/grimen/formtastic_tmbundle
498
+
499
+
500
+ h2. Contributors
501
+
502
+ Formtastic is maintained by "Justin French":http://justinfrench.com, "José Valim":http://github.com/josevalim and "Jonas Grimfelt":http://github.com/grimen, but it wouldn't be as awesome as it is today without help from over 30 contributors.
503
+
504
+ @git shortlog -n -s --no-merges@
505
+
506
+
507
+ h2. Google Group
508
+
509
+ Please join the "Formtastic Google Group":http://groups.google.com.au/group/formtastic, especially if you'd like to talk about a new feature, or report a bug.
510
+
511
+
512
+ h2. Project Info
513
+
514
+ Formtastic is hosted on Github: "http://github.com/justinfrench/formtastic":http://github.com/justinfrench/formtastic, where your contributions, forkings, comments and feedback are greatly welcomed.
515
+
516
+
517
+ Copyright (c) 2007-2008 Justin French, released under the MIT license.