aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags.rb
blob: 036fb1efd8c64171ebd3faa5ec55c3dbf6449677 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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'
    end
  end
end