mirror of
https://github.com/github/rails.git
synced 2026-02-05 19:55:14 -05:00
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8756 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
40 lines
626 B
Ruby
40 lines
626 B
Ruby
module ActionView
|
|
class TemplateHandler
|
|
|
|
def self.line_offset
|
|
0
|
|
end
|
|
|
|
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
|
|
|
|
def line_offset
|
|
self.class.line_offset
|
|
end
|
|
|
|
# Called by CacheHelper#cache
|
|
def cache_fragment(block, name = {}, options = nil)
|
|
end
|
|
|
|
# This method reads a template file.
|
|
def read_template_file(template_path, extension)
|
|
File.read(template_path)
|
|
end
|
|
end
|
|
end
|