mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-22 10:10:12 +01:00
14 lines
210 B
Ruby
14 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
|