# File lib/simple_form/inputs/numeric_input.rb, line 6 def input add_size! if SimpleForm.html5 input_html_options[:type] ||= "number" input_html_options[:step] ||= integer? ? 1 : "any" infer_attributes_from_validations! end @builder.text_field(attribute_name, input_html_options) end