mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-22 18:20:12 +01:00
15 lines
210 B
Ruby
15 lines
210 B
Ruby
|
|
# Legacy TemplateHandler stub
|
||
|
|
|
||
|
|
module ActionView
|
||
|
|
module TemplateHandlers
|
||
|
|
module Compilable
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
class TemplateHandler
|
||
|
|
def self.call(template)
|
||
|
|
new.compile(template)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|