mirror of
https://github.com/github/rails.git
synced 2026-02-09 21:55:24 -05:00
22 lines
297 B
Ruby
22 lines
297 B
Ruby
module ActionView
|
|
class TemplateHandler
|
|
def self.compilable?
|
|
false
|
|
end
|
|
|
|
def initialize(view)
|
|
@view = view
|
|
end
|
|
|
|
def render(template, local_assigns = {})
|
|
end
|
|
|
|
def compile(template)
|
|
end
|
|
|
|
def compilable?
|
|
self.class.compilable?
|
|
end
|
|
end
|
|
end
|