blob: e2dd305f938d97624741b354aa5d2d6b323bf08b (
plain) (
tree)
|
|
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
|