2008-10-27 07:47:01 +01:00
|
|
|
# Legacy TemplateHandler stub
|
2008-05-18 06:22:34 +02:00
|
|
|
|
2008-10-27 07:47:01 +01:00
|
|
|
module ActionView
|
|
|
|
module TemplateHandlers
|
|
|
|
module Compilable
|
2008-05-18 06:22:34 +02:00
|
|
|
end
|
2008-10-27 07:47:01 +01:00
|
|
|
end
|
2008-05-18 06:22:34 +02:00
|
|
|
|
2008-10-27 07:47:01 +01:00
|
|
|
class TemplateHandler
|
|
|
|
def self.call(template)
|
|
|
|
new.compile(template)
|
2008-05-18 06:22:34 +02:00
|
|
|
end
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
|
|
|
end
|