aboutsummaryrefslogblamecommitdiffstats
path: root/actionview/lib/action_view/helpers/tags.rb
blob: 566668b95831e31e84d520c4739c418bde2eb487 (plain) (tree)
1
2
3
4
5
6
7
8
9

                             
                 
                         


                                    

                       
                            






























                                         


       
# frozen_string_literal: true

module ActionView
  module Helpers #:nodoc:
    module Tags #:nodoc:
      extend ActiveSupport::Autoload

      eager_autoload do
        autoload :Base
        autoload :Translator
        autoload :CheckBox
        autoload :CollectionCheckBoxes
        autoload :CollectionRadioButtons
        autoload :CollectionSelect
        autoload :ColorField
        autoload :DateField
        autoload :DateSelect
        autoload :DatetimeField
        autoload :DatetimeLocalField
        autoload :DatetimeSelect
        autoload :EmailField
        autoload :FileField
        autoload :GroupedCollectionSelect
        autoload :HiddenField
        autoload :Label
        autoload :MonthField
        autoload :NumberField
        autoload :PasswordField
        autoload :RadioButton
        autoload :RangeField
        autoload :SearchField
        autoload :Select
        autoload :TelField
        autoload :TextArea
        autoload :TextField
        autoload :TimeField
        autoload :TimeSelect
        autoload :TimeZoneSelect
        autoload :UrlField
        autoload :WeekField
      end
    end
  end
end