aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_view/renderer/abstract_renderer.rb
blob: 5a611e9f633a2067834ec08f0636fef308960c4a (plain) (tree)
1
2
3
4
5
6
7

                                 
                                                                                 
                                                                             
 
                                  
                                      





                               
             









                                                      


                                                                                             
     
   
module ActionView
  class AbstractRenderer #:nodoc:
    delegate :find_template, :template_exists?, :with_fallbacks, :update_details,
      :with_layout_format, :formats, :freeze_formats, :to => :@lookup_context

    def initialize(lookup_context)
      @lookup_context = lookup_context
    end

    def render
      raise NotImplementedError
    end

    protected
    
    def extract_details(options)
      details = {}
      @lookup_context.registered_details.each do |key|
        next unless value = options[key]
        details[key] = Array.wrap(value)
      end
      details
    end
    
    def instrument(name, options={})
      ActiveSupport::Notifications.instrument("render_#{name}.action_view", options){ yield }
    end
  end
end