aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/vendor/html-scanner.rb
blob: 2cb20ddd05a7c46634ceb987e1e0ff8c5fb81b9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
$LOAD_PATH << "#{File.dirname(__FILE__)}/html-scanner"

module HTML
  extend ActiveSupport::Autoload

  autoload :CDATA, 'html/node'
  autoload :Document, 'html/document'
  autoload :FullSanitizer, 'html/sanitizer'
  autoload :LinkSanitizer, 'html/sanitizer'
  autoload :Node, 'html/node'
  autoload :Sanitizer, 'html/sanitizer'
  autoload :Selector, 'html/selector'
  autoload :Tag, 'html/node'
  autoload :Text, 'html/node'
  autoload :Tokenizer, 'html/tokenizer'
  autoload :Version, 'html/version'
  autoload :WhiteListSanitizer, 'html/sanitizer'
end