aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/sanitize_helper.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-11-23 19:12:00 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2008-11-23 19:12:00 -0800
commit2dd0ec48a5068a095e362fad2a77d63b86fdfd95 (patch)
tree3a7fdd08f4a7f361d9a263e52f9b0e57c9f191e8 /actionpack/lib/action_view/helpers/sanitize_helper.rb
parentfb4bb93d439f32421c8836261dce0c7de1addf82 (diff)
downloadrails-2dd0ec48a5068a095e362fad2a77d63b86fdfd95.tar.gz
rails-2dd0ec48a5068a095e362fad2a77d63b86fdfd95.tar.bz2
rails-2dd0ec48a5068a095e362fad2a77d63b86fdfd95.zip
Autoload HTML::Document and sanitizers
Diffstat (limited to 'actionpack/lib/action_view/helpers/sanitize_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/sanitize_helper.rb11
1 files changed, 1 insertions, 10 deletions
diff --git a/actionpack/lib/action_view/helpers/sanitize_helper.rb b/actionpack/lib/action_view/helpers/sanitize_helper.rb
index 435ba936e1..200c1d6085 100644
--- a/actionpack/lib/action_view/helpers/sanitize_helper.rb
+++ b/actionpack/lib/action_view/helpers/sanitize_helper.rb
@@ -1,14 +1,5 @@
require 'action_view/helpers/tag_helper'
-
-begin
- require 'html/document'
-rescue LoadError
- html_scanner_path = "#{File.dirname(__FILE__)}/../../action_controller/vendor/html-scanner"
- if File.directory?(html_scanner_path)
- $:.unshift html_scanner_path
- require 'html/document'
- end
-end
+require 'action_controller/vendor/html-scanner'
module ActionView
module Helpers #:nodoc: