aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template_handler.rb
blob: 78586d6142b3e9f28a5de903d73abcf753f5efa3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module ActionView
  class TemplateHandler
    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

    # Called by CacheHelper#cache
    def cache_fragment(block, name = {}, options = nil)
    end
  end
end