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

Version Path
simple_form-5.3.0 lib/simple_form/helpers.rb
simple_form-5.2.0 lib/simple_form/helpers.rb
simple_form-5.1.0 lib/simple_form/helpers.rb
simple_form-5.0.3 lib/simple_form/helpers.rb
simple_form-5.0.2 lib/simple_form/helpers.rb
simple_form-5.0.1 lib/simple_form/helpers.rb
simple_form-5.0.0 lib/simple_form/helpers.rb
simple_form-4.1.0 lib/simple_form/helpers.rb
simple_form-4.0.1 lib/simple_form/helpers.rb
simple_form-4.0.0 lib/simple_form/helpers.rb
simple_form-3.5.1 lib/simple_form/helpers.rb