# File lib/simple_form/inputs/string_input.rb, line 6 def input unless string? input_html_classes.unshift("string") input_html_options[:type] ||= input_type if html5? end @builder.text_field(attribute_name, input_html_options) end
# File lib/simple_form/inputs/string_input.rb, line 17 def string? input_type == :string end