mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
12 lines
574 B
Ruby
12 lines
574 B
Ruby
module SimpleForm
|
|
# Helpers are made of several helpers that cannot be turned on automatically.
|
|
# For instance, disabled cannot be turned on automatically, it requires the
|
|
# user to explicitly pass the option :disabled => true so it may work.
|
|
module Helpers
|
|
autoload :Autofocus, 'simple_form/helpers/autofocus'
|
|
autoload :Disabled, 'simple_form/helpers/disabled'
|
|
autoload :Readonly, 'simple_form/helpers/readonly'
|
|
autoload :Required, 'simple_form/helpers/required'
|
|
autoload :Validators, 'simple_form/helpers/validators'
|
|
end
|
|
end
|