module JqueryUiForm module Inputs module FileInput def file_input(method, options = {}) options[:type] = "file" basic_input_helper(:file_field, :file, method, options) end end end end