Sha256: 69d438b0d5a5db909b5a1568945ea54dbb78f6db7c3c0e20cd792381efab1deb
Contents?: true
Size: 591 Bytes
Versions: 11
Compression:
Stored size: 591 Bytes
Contents
# frozen_string_literal: true 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
Version data entries
11 entries across 11 versions & 1 rubygems