aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template_handler.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_view/template_handler.rb')
-rw-r--r--actionpack/lib/action_view/template_handler.rb13
1 files changed, 13 insertions, 0 deletions
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