aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags.rb
blob: cff5b0220cdc80e21b1477014c9151f09ee57881 (plain) (blame)
1
2
3
4
5
6
7
8
9
module ActionView
  module Helpers
    module Tags
      autoload :BaseTag,      'action_view/helpers/tags/base_tag'
      autoload :LabelTag,     'action_view/helpers/tags/label_tag'
      autoload :TextFieldTag, 'action_view/helpers/tags/text_field_tag'
    end
  end
end