aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template_handler.rb
blob: 5efe9459b5e19f1213f8ebba99715843578ee546 (plain) (blame)
1
2
3
4
5
6
7
8
9
# Legacy TemplateHandler stub

module ActionView
  class TemplateHandler
    def self.call(template)
      new.compile(template)
    end
  end
end