tracks/vendor/rails/actionpack/lib/action_view/template_handler.rb

18 lines
230 B
Ruby
Raw Normal View History

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