aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template/handlers.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2012-05-17 10:19:27 -0700
committerJosé Valim <jose.valim@gmail.com>2012-05-17 10:19:27 -0700
commitf5ebc9a232fbbee188be432ddecbbf961162ef2a (patch)
tree2a9cf8bb248c4385669825377a831e8b483e1ff3 /actionpack/lib/action_view/template/handlers.rb
parent6ada771a08196d8a5d790f8b4b2224aa8e1748b3 (diff)
parent8bea607265a2c9bb9bb2188b0a79089ca373b814 (diff)
downloadrails-f5ebc9a232fbbee188be432ddecbbf961162ef2a.tar.gz
rails-f5ebc9a232fbbee188be432ddecbbf961162ef2a.tar.bz2
rails-f5ebc9a232fbbee188be432ddecbbf961162ef2a.zip
Merge pull request #6309 from steveklabnik/fix-2394
Created a Raw handler for templates.
Diffstat (limited to 'actionpack/lib/action_view/template/handlers.rb')
-rw-r--r--actionpack/lib/action_view/template/handlers.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/template/handlers.rb b/actionpack/lib/action_view/template/handlers.rb
index 4e22bec6cc..41b14373a3 100644
--- a/actionpack/lib/action_view/template/handlers.rb
+++ b/actionpack/lib/action_view/template/handlers.rb
@@ -4,10 +4,12 @@ module ActionView #:nodoc:
module Handlers #:nodoc:
autoload :ERB, 'action_view/template/handlers/erb'
autoload :Builder, 'action_view/template/handlers/builder'
+ autoload :Raw, 'action_view/template/handlers/raw'
def self.extended(base)
base.register_default_template_handler :erb, ERB.new
base.register_template_handler :builder, Builder.new
+ base.register_template_handler :raw, Raw.new
end
@@template_handlers = {}