mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
9 lines
169 B
Ruby
9 lines
169 B
Ruby
module SimpleForm
|
|
module Inputs
|
|
class FileInput < Base
|
|
def input
|
|
@builder.file_field(attribute_name, input_html_options)
|
|
end
|
|
end
|
|
end
|
|
end
|