heartcombo--simple_form/test/discovery_inputs.rb

21 lines
405 B
Ruby
Raw Normal View History

2011-04-27 19:26:02 +00:00
class StringInput < SimpleForm::Inputs::StringInput
def input
"<section>#{super}</section>".html_safe
end
end
class NumericInput < SimpleForm::Inputs::NumericInput
def input
"<section>#{super}</section>".html_safe
end
end
class CustomizedInput < SimpleForm::Inputs::StringInput
def input
"<section>#{super}</section>".html_safe
end
def input_method
:text_field
end
end