method

new

new(view, source, locals = {}, type = nil)
public

No documentation available.

# File actionpack/lib/action_view/inline_template.rb, line 4
    def initialize(view, source, locals = {}, type = nil)
      @view = view
      @finder = @view.finder
      
      @source = source
      @extension = type
      @locals = locals || {}
      
      @handler = self.class.handler_class_for_extension(@extension).new(@view)
    end