aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template_handler.rb
blob: 8b339f595be61d29a0dca92bc6f4c62c7b81b465 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module ActionView
  class TemplateHandler
    def initialize(view)
      @view = view
    end

    def render(template, local_assigns)
    end

    def compile(template)
    end
  end
end