aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_view/inline_template.rb
blob: fd0ad483020b4f51a8f2ed5dfcfc461b5a462a0a (plain) (tree)
1
2
3
4
5
6
7
8
9

                                          

                                                         
 


                            
 

                                                                              
 


                  

     
module ActionView #:nodoc:
  class InlineTemplate < Template #:nodoc:
    def initialize(view, source, locals = {}, type = nil)
      @view = view

      @source = source
      @extension = type
      @locals = locals || {}

      @handler = self.class.handler_class_for_extension(@extension).new(@view)
    end

    def method_key
      @source
    end
  end
end