Use a <fieldset> and an <ol> tag to wrap the inputs.
Registered as :fieldset_ol.
Public Instance methods
call(form, opts)
Wrap the inputs in a <fieldset> and a <ol> tag.
[show source]
# File lib/forme/transformers/inputs_wrapper.rb 34 def call(form, opts) 35 super(form, opts){form.tag(:ol){yield}} 36 end