From 3fab196da37ef76cfce040717d4176945212aea8 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Sun, 9 Dec 2007 22:11:11 +0000 Subject: Refactor Action View template handlers. Closes #10437. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8341 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/template_handler.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 actionpack/lib/action_view/template_handler.rb (limited to 'actionpack/lib/action_view/template_handler.rb') diff --git a/actionpack/lib/action_view/template_handler.rb b/actionpack/lib/action_view/template_handler.rb new file mode 100644 index 0000000000..8b339f595b --- /dev/null +++ b/actionpack/lib/action_view/template_handler.rb @@ -0,0 +1,13 @@ +module ActionView + class TemplateHandler + def initialize(view) + @view = view + end + + def render(template, local_assigns) + end + + def compile(template) + end + end +end -- cgit v1.2.3