aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags.rb
blob: 5b43f43feab6335c69e84dee12c13b267fb1724e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module ActionView
  module Helpers
    module Tags
      autoload :Base,          'action_view/helpers/tags/base'
      autoload :Label,         'action_view/helpers/tags/label'
      autoload :TextField,     'action_view/helpers/tags/text_field'
      autoload :PasswordField, 'action_view/helpers/tags/password_field'
      autoload :HiddenField,   'action_view/helpers/tags/hidden_field'
      autoload :FileField,     'action_view/helpers/tags/file_field'
    end
  end
end