mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
51b6619d4e
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8976 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
34 lines
477 B
Ruby
34 lines
477 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)
|
|
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
|
|
end
|
|
end
|