aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_view/template_handler.rb
blob: d7e7c9b199e81fc02b95ca379e8f1fb68071ba0c (plain) (tree)
1
2
3
4
5
6
7
8
                             
 


                         
       
     
 


                           
       

     
# Legacy TemplateHandler stub

module ActionView
  module TemplateHandlers
    module Compilable
    end
  end

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