aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_view/template_handler.rb
blob: 8ce31ade4927b77c2ff00b3ad955ba0cb2f8e593 (plain) (tree)
1
2
3
4
5
6

                       



                        








                                       



                                                       

     
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

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