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

                 



                                    
                        
                                    

                                      
                          
                         
                          

                                  




                                       
                     
                          
                           
                             

                           
                           
                      
                        
                        
                         
                         
                          

                              
                         


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

      autoload :Base
      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