mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-21 17:50:13 +01:00
17 lines
230 B
Ruby
17 lines
230 B
Ruby
module ActionView
|
|
class TemplateHandler
|
|
def self.line_offset
|
|
0
|
|
end
|
|
|
|
def initialize(view)
|
|
@view = view
|
|
end
|
|
|
|
def render(template, local_assigns)
|
|
end
|
|
|
|
def compile(template)
|
|
end
|
|
end
|
|
end
|