# File lib/Borges/HTML/HtmlBuilder.rb, line 199 def input(input_type, name = nil, value = nil) @attributes[:name] = name unless name.nil? @attributes[:value] = encode value unless value.nil? @attributes[:type] = input_type tag :input end