aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template/handler.rb
diff options
context:
space:
mode:
authorYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-05-21 14:22:07 -0700
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-05-21 14:34:56 -0700
commite693f45e155a81b6c337b8766870b56716a05105 (patch)
tree176d94bdc8aa6e072666f1a1ef9383ff809a18df /actionpack/lib/action_view/template/handler.rb
parent386ff66e5ed4fbe1e060610d4226a4eb22dca766 (diff)
downloadrails-e693f45e155a81b6c337b8766870b56716a05105.tar.gz
rails-e693f45e155a81b6c337b8766870b56716a05105.tar.bz2
rails-e693f45e155a81b6c337b8766870b56716a05105.zip
Remove some response content type concepts from ActionView
Diffstat (limited to 'actionpack/lib/action_view/template/handler.rb')
-rw-r--r--actionpack/lib/action_view/template/handler.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/template/handler.rb b/actionpack/lib/action_view/template/handler.rb
index 672da0ed2b..3481a4a4e7 100644
--- a/actionpack/lib/action_view/template/handler.rb
+++ b/actionpack/lib/action_view/template/handler.rb
@@ -1,3 +1,5 @@
+require "active_support/core_ext/class/inheritable_attributes"
+
# Legacy TemplateHandler stub
module ActionView
module TemplateHandlers #:nodoc:
@@ -19,6 +21,9 @@ module ActionView
end
class TemplateHandler
+ extlib_inheritable_accessor :default_format
+ self.default_format = Mime::HTML
+
def self.call(template)
"#{name}.new(self).render(template, local_assigns)"
end