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

                                                         
 


                            
 
                           
                                                                            
       

     
module ActionView #:nodoc:
  class InlineTemplate #:nodoc:
    include Renderable

    def initialize(view, source, locals = {}, type = nil)
      @view = view

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

      @method_key = @source
      @handler = Template.handler_class_for_extension(@extension).new(@view)
    end
  end
end