instiki/vendor/rails/actionpack/lib/action_view/template_handler.rb

15 lines
210 B
Ruby
Raw Normal View History

# Legacy TemplateHandler stub
module ActionView
module TemplateHandlers
module Compilable
end
end
class TemplateHandler
def self.call(template)
new.compile(template)
end
end
end