heartcombo--simple_form/lib/simple_form/helpers.rb

10 lines
342 B
Ruby
Raw Normal View History

module SimpleForm
module Helpers
autoload :Maxlength, 'simple_form/helpers/maxlength'
autoload :Pattern, 'simple_form/helpers/pattern'
autoload :Validators, 'simple_form/helpers/validators'
autoload :Required, 'simple_form/helpers/required'
autoload :Readonly, 'simple_form/helpers/readonly'
end
end